/
githubmirror
/
ui
Обзор
Документация
Войти
/
githubmirror
/
ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
apps/v4/examples/aria/command-basic.tsx
42 строки
1 KB
shadcn
feat: aria (#11208)
17 июл 2026, 18:20
Не верифицирован
17 июл 2026, 18:20
2b89d67
Код
Авторство
О чём код?
"use client" import * as React from "react" import { Button } from "@/styles/aria-nova/ui/button" import { Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, } from "@/styles/aria-nova/ui/command" export function CommandBasic() { const [open, setOpen] = React.useState(false) return ( <div className="flex flex-col gap-4"> <Button onClick={() => setOpen(true)} variant="outline" className="w-fit"> Open Menu </Button> <CommandDialog open={open} onOpenChange={setOpen}> <Command> <CommandInput placeholder="Type a command or search..." /> <CommandList renderEmptyState={() => ( <CommandEmpty>No results found.</CommandEmpty> )} > <CommandGroup heading="Suggestions"> <CommandItem>Calendar</CommandItem> <CommandItem>Search Emoji</CommandItem> <CommandItem>Calculator</CommandItem> </CommandGroup> </CommandList> </Command> </CommandDialog> </div> ) }