React Forms made easy / Developed at TouchBistro in Toronto.
Frig is:
npm install --save frig frigging-bootstrap
Note: For non ES6 browser compatibility you will also need to install the Babel PolyFill.
// One time theme selection
// (put this in an initialization file and call it once)
import Frig from "frig"
import FriggingBootstrap from "frigging-bootstrap"
Frig.defaultTheme(FriggingBootstrap)
// ...
// Libraries needed for each component
import React from "react"
import ReactDOM from "react-dom"
import {Form, Input, Submit} from "frig"
class TheBasicsExample extends React.Component {
displayName = "TheBasicsExample"
state = {account: {}}
render() {
return (
<Form
data={this.state.account}
onChange={(account) => this.setState({account})}
>
<div className="row">
<Input name="email"/>
<Input name="password"/>
<Input name="rememberMe" type="switch"/>
<Submit title="Sign In"/>
</div>
</Form>
)
}
}
Much of Frig's functionality is provided by Frig themes.
Currently, the default theme (and only) is Frigging Bootstrap.
More information is available in the documentation:
http://frig-js.github.io/frig/
https://github.com/frig-js/frigging-examples
Frig is licensed under the MIT license.