@Crossed/ui is our component package, by instaling it you will be able to use our React components. A detailed list is available on our documentation
@crossed/ui is made of several React component that you can import one by one by installing @crossed/ui
pnpm i @crossed/ui
All you need to do is import component you want to use from @crossed/ui and use it in your app
import { Card, } from '@crossed/ui`
const YourComponent = () =>{
return (
<Card>
<Card.Title>I'm the card's title</Card.Title>
<Card.Description>I'm the card's description</Card.Description>
</Card>
)
}
Go check our documentation to find more details on how you can use each component
Want to Contribute to our project ? Check our contribution guide line