Mem is a design system built using Modulz
Using this package
Step 1: Install Mem from npm
Install @meeshkan/mem using your package manager:
yarn add @meeshkan/mem
Step 2: Import & use your components
Your components are ready to use! All components are imported directory from @meeshkan/mem:
import { Card, Input, Box, Container } from '@meeshkan/mem';
Step 3: Wrap your app in DesignSystemProvider
To access the default theme, you must import and wrap your app with the DesignSystemProvider
:
import { DesignSystemProvider } from '@meeshkan/mem';
const App = () => <DesignSystemProvider>Hey there👋</DesignSystemProvider>;