React Bulk
Complete uniform UI for ReactJS and React Native.

Installation
React Web
yarn add @react-bulk/core @react-bulk/web
React Native
yarn add @react-bulk/core @react-bulk/native
Usage
Read the Docs.
Example
import ReactBulk from '@react-bulk/core';
import { Box, Card, Text } from '@react-bulk/web';
export default function App() {
const theme = {
mode: 'dark',
typography: {
fontSize: 16
},
colors: {
primary: {
main: '#673ab7',
light: '#9a67ea',
dark: '#320b86',
},
secondary: {
main: '#009688',
light: '#52c7b8',
dark: '#00675b',
},
},
};
return (
<ReactBulk theme={theme}>
<Box m={3}>
<Card>
<Text color="primary">Hello World!</Text>
</Card>
</Box>
</ReactBulk>
);
}