New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@cerebral/inferno

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cerebral/inferno

Inferno view for Cerebral


Version published
Maintainers
6
Created

@cerebral/inferno

Inferno view for Cerebral.

Install

npm install @cerebral/inferno inferno babel-plugin-inferno

Container

import { render } from 'inferno'
import App from 'cerebral'
import { Container } from '@cerebral/inferno'
import AppComponent from './components/App'
import main from './main'

const app = App(main)

render(
  <Container app={app}>
    <App />
  </Container>,
  document.querySelector('#app')
)

connect

import { Component } from 'inferno'
import { connect } from '@cerebral/inferno'
import { state, sequences } from 'cerebral'

// Stateless
export default connect(
  {
    foo: state`foo`,
    onClick: sequences`onClick`
  },
  function MyComponent ({foo, onClick}) {
    return <div onClick={() => onClick()}>{foo}</div>
  }
)

// Stateful
export default connect(
  {
    foo: state.foo,
    onClick: sequences.onClick
  },
  class MyComponent extends Component {
    render () {
      return <div onClick={() => this.props.onClick()}>{this.props.foo}</div>
    }
  }
)

FAQs

Package last updated on 08 Oct 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts