A shared set of UI components for internal projects
npm install @tedconf/react-ted-bootstrapA React-based design system for internal TED projects.
``bash`
yarn add @tedconf/react-ted-bootstrap
* Button
* Container
* DataTable
ember-ted-button equivalent
`
import { Button } from '@tedconf/react-ted-bootstrap';
const MyComponent = () => {
}
`
Bootstrap's .container equivalent
`
import { Container } from '@tedconf/react-ted-bootstrap';
const MyComponent = () => {
// your code here..
}
``