@platformbuilders/react-elements
v0.3.6
Published
Platform Builders Shared Components Library For React Web
Downloads
23
Readme
@platformbuilders/react-elements
Welcome to the @platformbuilders/elements package here you will find out all of our components shared with the community
Whats the idea of this repository
Its a place that we can share a little bit of our code base and show how we work on our projects with our components!
How can i use the library?
Here's how you add our dependencie to your project @platformbuilders/elements
- depend on it:
yarn add @platformbuilders/react-elements
- import the ThemeProvider from styled-components and provide the Theme following the ThemeType definition.
import { StylesProvider } from '@material-ui/core/styles';
import { ThemeProvider } from 'styled-components';
import { ThemeType } from '@platformbuilders/react-elements';
const theme: ThemeType = { ... };
<ThemeProvider theme={theme}>
<StylesProvider injectFirst>
<App />
</StylesProvider>
</ThemeProvider>
- use it
import { Button } from '@platformbuilders/react-elements';