@tedconf/react-ted-bootstrap
v1.1.0
Published
A shared set of UI components for internal projects
Downloads
24
Keywords
Readme
TED Bootstrap
A React-based design system for internal TED projects.
Installation
yarn add @tedconf/react-ted-bootstrap
Components List
Button
ember-ted-button
equivalent
import { Button } from '@tedconf/react-ted-bootstrap';
const MyComponent = () => {
<Button>
My Button
</Button>
}
Container
Bootstrap's .container
equivalent
import { Container } from '@tedconf/react-ted-bootstrap';
const MyComponent = () => {
<Container>
// your code here..
</Container>
}