A WarioWare Culture Quizz minigames to play with friends
Find a file
2026-06-07 18:45:52 +02:00
apps/web feat: initial commit 2026-06-07 18:45:52 +02:00
packages/ui feat: initial commit 2026-06-07 18:45:52 +02:00
.gitignore feat: initial commit 2026-06-07 18:45:52 +02:00
.npmrc feat: initial commit 2026-06-07 18:45:52 +02:00
.prettierignore feat: initial commit 2026-06-07 18:45:52 +02:00
.prettierrc feat: initial commit 2026-06-07 18:45:52 +02:00
bun.lock feat: initial commit 2026-06-07 18:45:52 +02:00
package.json feat: initial commit 2026-06-07 18:45:52 +02:00
README.md feat: initial commit 2026-06-07 18:45:52 +02:00
tsconfig.json feat: initial commit 2026-06-07 18:45:52 +02:00
turbo.json feat: initial commit 2026-06-07 18:45:52 +02:00

shadcn/ui monorepo template

This is a Vite monorepo template with shadcn/ui.

Adding components

To add components to your app, run the following command at the root of your web app:

pnpm dlx shadcn@latest add button -c apps/web

This will place the ui components in the packages/ui/src/components directory.

Using components

To use the components in your app, import them from the ui package.

import { Button } from "@workspace/ui/components/button";