Common front-end components for Web using the Tesseract design system, written for React. https://make.modal.sh/tesseract/web/react/common
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
TheoryOfNekomata 9971797b27 Update package data, test README publishing há 3 anos
packages Add name há 3 anos
plop/templates Update directory structure, generator code há 3 anos
utilities Initial commit há 4 anos
.editorconfig Initial commit há 4 anos
.env.example Add example env file há 4 anos
.gitignore Improve navigation on mobile há 3 anos
.npmignore Update ignores há 3 anos
.prettierrc Improve test coverage há 4 anos
LICENSE Add README, LICENSE há 4 anos
README.md Update package data, test README publishing há 3 anos
global.d.ts Initial commit há 4 anos
jest.config.js Add Next.js + MDX support há 3 anos
jest.setup.ts Initial commit há 4 anos
package.json Update package data, test README publishing há 3 anos
plopfile.js Update directory structure, generator code há 3 anos
rollup.config.js Update directory structure, generator code há 3 anos
tsconfig.json Update ignores há 3 anos
yarn.lock Update docs há 3 anos

README.md

Tesseract Design - React Common

Check the documentation for more details.

Usage

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)

TypeScript

The package is written and tested using TypeScript. Thus, typings for consumption in TypeScript are bundled with the compiled source.