cufc-ui
v0.2.27
Published
UI components for Cufc
Downloads
17
Readme
CUFC-UI Library is a collection of React components that are used in CUFC-UI projects.
Installation
npm install @cufc/ui
Usage
import React from 'react'
import { Button } from '@cufc/ui'
const App = () => {
return (
<BaseButton
text="Click me"
onClick={() => console.log('clicked')}
/>
)
}