NewBuild React/Shadcn/TailwindCSS

This commit is contained in:
2025-11-28 19:15:29 -06:00
parent 295aadddbe
commit 6502e8d5a7
25 changed files with 1207 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
// Generated by `bun init`
declare module "*.svg" {
/**
* A path to the SVG file
*/
const path: `${string}.svg`;
export = path;
}
declare module "*.module.css" {
/**
* A record of class names to their corresponding CSS module classes
*/
const classes: { readonly [key: string]: string };
export = classes;
}