From 17293afd1ef65b2221fb54804d170d337fa0b9af046c133a6772f58080ac79bd Mon Sep 17 00:00:00 2001
From: Techognito
Date: Wed, 20 Aug 2025 14:22:20 +0200
Subject: [PATCH] added Material UI and some buttons
---
src/App.tsx | 13 ++++++++-----
src/GarageApp/App.tsx | 5 +++++
src/GarageApp/locales/en/.translation.json.swp | Bin 16384 -> 0 bytes
3 files changed, 13 insertions(+), 5 deletions(-)
delete mode 100644 src/GarageApp/locales/en/.translation.json.swp
diff --git a/src/App.tsx b/src/App.tsx
index 860470ca..f5adb185 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -5,6 +5,12 @@ import { List } from "./wisher/list";
import logo from "./logo.svg";
import reactLogo from "./react.svg";
+import Button from '@mui/material/Button';
+import Grid from '@mui/material/Grid';
+import BtnGrid from './buttons';
+
+
+
export function App() {
return (
@@ -14,11 +20,8 @@ export function App() {
Bun + React
-
- Edit src/App.tsx and save to test HMR
-
-
-
+
Testing Apps
+
);
}
diff --git a/src/GarageApp/App.tsx b/src/GarageApp/App.tsx
index b70ed1f0..18e4631a 100644
--- a/src/GarageApp/App.tsx
+++ b/src/GarageApp/App.tsx
@@ -5,6 +5,9 @@ import { useTranslation, withTranslation, Trans } from 'react-i18next';
import logo from "./logo.svg";
import reactLogo from "./react.svg";
+import Button from '@mui/material/Button';
+
+import button from "./modules/DummyButton"
export function App() {
const { t, i18n } = useTranslation();
@@ -20,6 +23,8 @@ export function App() {
Edit src/App.tsx and save to test HMR