How to Use

Direct Design System is a collection of reusable components that can be used depending on the team's needs. Here is the instruction on how to use them:

Install Direct component library via NPM:

npm i reactjs-direct

Import component to your project:

import { Button } from ' '

Use your component in your project:

const YourProject = () => {
          return (
            <div>
              <Button></Button> 
            </div> )
          };