@oauch/neat-ui
v0.0.67
Published
Neat UI (React)
Downloads
4
Readme
🟢 Neat-UI
Just Neat and Simple React UI
⚙️ Install
npm i @oauch/neat-ui🏠 Documentation
Neat-UI
💬 StoryBook
StoryBook
✅ How to use
import { Alert } from "@oauch/neat-ui";
const App = () => {
return (
<div>
<Alert status="success">success</Alert>
<Alert status="info">info</Alert>
<Alert status="warning">warning</Alert>
<Alert status="error">error</Alert>
</div>
);
};
export default App;