Common front-end components for Web using the Tesseract design system, written for React. https://make.modal.sh/tesseract/web/react/common
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
TheoryOfNekomata 969b03a890 Initial commit 4 years ago
lib Initial commit 4 years ago
plop/templates/component Initial commit 4 years ago
utilities Initial commit 4 years ago
.editorconfig Initial commit 4 years ago
.env.example Initial commit 4 years ago
.gitignore Initial commit 4 years ago
.npmignore Initial commit 4 years ago
.prettierrc Initial commit 4 years ago
README.md Initial commit 4 years ago
doczrc.js Initial commit 4 years ago
global.d.ts Initial commit 4 years ago
jest.config.js Initial commit 4 years ago
jest.setup.ts Initial commit 4 years ago
package.json Initial commit 4 years ago
plopfile.js Initial commit 4 years ago
rollup.config.js Initial commit 4 years ago
tsconfig.json Initial commit 4 years ago
yarn.lock Initial commit 4 years ago

README.md

Tesseract Web - React

Front-end components for Web using the Tesseract design system, written for React.

package: @tesseract-design/react jest: 25.1.0 react: 16.13.1 styled-components: 5.1.0

Installation

Since this package resides in the Modal.sh JavaScript Package Registry, you may need to adjust configuration in your chosen package manager.

With Yarn, add this to your .yarnrc file:

"@tesseract-design:registry" "https://pack.modal.sh/js/"

Then, install the package by running the following command:

yarn add @tesseract-design/react

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'

const LoginForm = etcProps => (
  <form
    {...etcProps}
  >
    <fieldset>
      <legend>
        Log In
      </legend>
      <div>
        <T.TextInput
          block
          label="Username"
        />
      </div>
      <div>
        <T.TextInput
          block
          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)