/neat-ui

Just Neat and Simple React UI

Primary LanguageTypeScript

🟢 Neat-UI

NPM Downloads

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;