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