@paketmutfak/ui
v4.4.2
Published
Paket Mutfak's UI Library
Downloads
151
Readme
Getting started
Paket Mutfak UI - a component library that gives you building blocks to build your own React applications.
npm install `@paketmutfak/ui`
// or yarn add `@paketmutfak/ui`
Notes
- Use global styles in your App.
import { globalStyles } from "@paketmutfak/ui";
// then call it
function App() {
globalStyles();
// return ...
}
- Import CSS file.
import "@paketmutfak/ui/src/ui.css";
function App() {
// return ...
}