"use client" import { ComponentContainer } from "@/components/ui/component-container" import { SectionHeading } from "@/components/ui/section-heading" import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" import { Label } from "@/components/ui/label" import { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, } from "@/components/ui/sheet" import { useState } from "react" export function SheetSection() { const [open, setOpen] = useState(false) return (
Edit profile Make changes to your profile here. Click save when you're done.
`} >
Edit profile Make changes to your profile here. Click save when you're done.

This sheet slides in from the top of the screen.

This sheet slides in from the right side.

This sheet slides in from the bottom of the screen.

This sheet slides in from the left side.

`} >

This sheet slides in from the top of the screen.

This sheet slides in from the right side.

This sheet slides in from the bottom of the screen.

This sheet slides in from the left side.

Usage

            {`import {
  Sheet,
  SheetClose,
  SheetContent,
  SheetDescription,
  SheetFooter,
  SheetHeader,
  SheetTitle,
  SheetTrigger,
} from "@/components/ui/sheet"`}
          
) }