Text input component #30

Open
stne3960 wants to merge 26 commits from text_input into main
3 changed files with 680 additions and 64 deletions
Showing only changes of commit 7bf1c01d10 - Show all commits

File diff suppressed because it is too large Load Diff

View File

@ -12,10 +12,12 @@
"preview": "vite preview"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.16",
"openapi-fetch": "^0.13.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.4.1"
"react-router": "^7.4.1",
"tailwindcss": "^4.1.16"
},
"devDependencies": {
"@eslint/js": "^9.21.0",

View File

@ -1,7 +1,8 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react-swc";
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react-swc';
import tailwindcss from '@tailwindcss/vite';
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
plugins: [react(), tailwindcss()],
});