Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 932 Bytes

File metadata and controls

41 lines (32 loc) · 932 Bytes

import { Callout } from "nextra/components"; import { Label, Input } from "@chepe/ui";

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

WIP - Dummy content

Input

Input are used primarily for

<ComponentShowcase component={

First Name
} seed={3}>

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

  export default function App() {
    return (
      <>
        <Label for="first_name">First Name</Label>
        <Input name="first_name" />
      </ >
    );
  }
```
Work in Progress