TheoryOfNekomata 9971797b27 | il y a 3 ans | |
---|---|---|
packages | il y a 3 ans | |
plop/templates | il y a 4 ans | |
utilities | il y a 4 ans | |
.editorconfig | il y a 4 ans | |
.env.example | il y a 4 ans | |
.gitignore | il y a 3 ans | |
.npmignore | il y a 3 ans | |
.prettierrc | il y a 4 ans | |
LICENSE | il y a 4 ans | |
README.md | il y a 3 ans | |
global.d.ts | il y a 4 ans | |
jest.config.js | il y a 4 ans | |
jest.setup.ts | il y a 4 ans | |
package.json | il y a 3 ans | |
plopfile.js | il y a 4 ans | |
rollup.config.js | il y a 4 ans | |
tsconfig.json | il y a 3 ans | |
yarn.lock | il y a 3 ans |
Check the documentation for more details.
The package includes components as named exports. Simply import the components you need individually or use a namespace import, like so:
import * as React from 'react'
import ReactDOM from 'react-dom'
import * as T from '@tesseract-design/react-common'
const LoginForm = etcProps => (
<form
{...etcProps}
>
<fieldset>
<legend>
Log In
</legend>
<div>
<T.TextInput
name="username"
label="Username"
/>
</div>
<div>
<T.TextInput
name="password"
type="password"
label="Password"
/>
</div>
<div>
<T.Button>
Log In
</T.Button>
</div>
</fieldset>
</form>
)
const mountNode = window.document.createElement('div')
ReactDOM.render(
<LoginForm />,
mountNode,
)
window.document.body.appendChild(mountNode)
The package is written and tested using TypeScript. Thus, typings for consumption in TypeScript are bundled with the compiled source.