TheoryOfNekomata 9971797b27 | há 3 anos | |
---|---|---|
packages | há 3 anos | |
plop/templates | há 4 anos | |
utilities | há 4 anos | |
.editorconfig | há 4 anos | |
.env.example | há 4 anos | |
.gitignore | há 3 anos | |
.npmignore | há 3 anos | |
.prettierrc | há 4 anos | |
LICENSE | há 4 anos | |
README.md | há 3 anos | |
global.d.ts | há 4 anos | |
jest.config.js | há 4 anos | |
jest.setup.ts | há 4 anos | |
package.json | há 3 anos | |
plopfile.js | há 4 anos | |
rollup.config.js | há 4 anos | |
tsconfig.json | há 3 anos | |
yarn.lock | há 3 anos |
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.