Install johno-ds using your package manager:
yarn add johno-ds
Your components are ready to use! All components are imported directory from johno-ds:
import { Card, Input, Box, Container } from 'johno-ds';
To access the default theme, you must import and wrap your app with the DesignSystemProvider
:
import { DesignSystemProvider } from 'johno-ds';
const App = () => <DesignSystemProvider>Hey there👋</DesignSystemProvider>;