A simple UI library built with React, TypeScript, Vite, and UnoCSS.
npm install my-ui-lib
# or
yarn add my-ui-lib
# or
pnpm add my-ui-lib
import { Button } from "my-ui-lib";
function App() {
return (
<div>
<Button>Click me</Button>
</div>
);
}
export default App;
To run the development server:
npm install
npm run dev
To build the library:
npm run build