Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 624 Bytes

File metadata and controls

27 lines (18 loc) · 624 Bytes

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

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

Collapsible

Collapsible are used primarily for

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

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

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

```
Work in Progress