diff --git a/frontend/app.css b/frontend/app.css deleted file mode 100644 index a461c50..0000000 --- a/frontend/app.css +++ /dev/null @@ -1 +0,0 @@ -@import "tailwindcss"; \ No newline at end of file diff --git a/frontend/index.html b/frontend/index.html index 3eb38d5..67ad3f2 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -4,7 +4,6 @@ Relnet - diff --git a/frontend/package.json b/frontend/package.json index b33a72f..6b5e3bd 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -27,6 +27,7 @@ "@types/axios": "^0.14.4", "@types/node": "^22.14.1", "@types/react": "^19.1.2", + "@types/react-dom": "^19.1.2", "@types/react-router-dom": "^5.3.3", "@vitejs/plugin-react": "^4.4.0", "prettier": "^3.5.3", diff --git a/frontend/src/app.css b/frontend/src/app.css new file mode 100644 index 0000000..bd6213e --- /dev/null +++ b/frontend/src/app.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; \ No newline at end of file diff --git a/frontend/src/main.tsx b/frontend/src/main.tsx index 801b9cd..88c053a 100644 --- a/frontend/src/main.tsx +++ b/frontend/src/main.tsx @@ -1,6 +1,7 @@ import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './App'; +import './app.css'; // Create root and render the App component into the HTML element with ID 'root' const rootElement = document.getElementById('root');