Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 564 Bytes

File metadata and controls

27 lines (18 loc) · 564 Bytes

import { Modal } from "@chepe/ui"; import { Callout } from "nextra/components";

import ComponentShowcase from "./../../components/ComponentShowcase/ComponentShowcase";

Modal

Modal are used primarily for

<ComponentShowcase component={Modal works} seed={0}>

```tsx filename="app.tsx" {1,4} copy
  import { Modal } from "@chepe/ui";

export default function App() {
  return <Modal>Modal works</Modal>;
}

```
Work in Progress