TheoryOfNekomata 1838385fe8 | 3 years ago | |
---|---|---|
.. | ||
.storybook | 3 years ago | |
docs | 3 years ago | |
public | 3 years ago | |
src | 3 years ago | |
test | 3 years ago | |
.eslintrc | 3 years ago | |
.gitignore | 3 years ago | |
.npmignore | 3 years ago | |
LICENSE | 3 years ago | |
README.md | 3 years ago | |
global.d.ts | 3 years ago | |
package.json | 3 years ago | |
pridepack.json | 3 years ago | |
tsconfig.eslint.json | 3 years ago | |
tsconfig.json | 3 years ago | |
yarn.lock | 3 years ago |
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.