toast-simple.json — ui Source File
Architecture documentation for toast-simple.json, a json file in the ui codebase.
Entity Profile
Source Code
{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "toast-simple",
"type": "registry:example",
"author": "shadcn (https://ui.shadcn.com)",
"registryDependencies": [
"toast"
],
"files": [
{
"path": "examples/toast-simple.tsx",
"content": "\"use client\"\n\nimport { useToast } from \"@/registry/default/hooks/use-toast\"\nimport { Button } from \"@/registry/default/ui/button\"\n\nexport default function ToastSimple() {\n const { toast } = useToast()\n\n return (\n <Button\n variant=\"outline\"\n onClick={() => {\n toast({\n description: \"Your message has been sent.\",\n })\n }}\n >\n Show Toast\n </Button>\n )\n}\n",
"type": "registry:example",
"target": ""
}
]
}
Source
Frequently Asked Questions
What does toast-simple.json do?
toast-simple.json is a source file in the ui codebase, written in json.
Where is toast-simple.json in the architecture?
toast-simple.json is located at apps/v4/public/r/styles/default/toast-simple.json (directory: apps/v4/public/r/styles/default).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free