@tedconf/react-ted-bootstrap

A shared set of UI components for internal projects

Usage no npm install needed!

<script type="module">
  import tedconfReactTedBootstrap from 'https://cdn.skypack.dev/@tedconf/react-ted-bootstrap';
</script>

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>
}

⬆️ back to top

Container

Bootstrap's .container equivalent

import { Container } from '@tedconf/react-ted-bootstrap';

const MyComponent = () => {
  <Container>
    // your code here..
  </Container>
}

⬆️ back to top