From fdc674f3974a194d50198ba85ced7f46d57b54c2 Mon Sep 17 00:00:00 2001 From: ImAlpha Date: Sun, 14 Apr 2024 18:35:16 -0700 Subject: [PATCH] initial page complete --- src/App.tsx | 46 +++++++++++++++++++++------------------------- 1 file changed, 21 insertions(+), 25 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index afe48ac..68da7f5 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,34 +1,30 @@ -import { useState } from 'react' -import reactLogo from './assets/react.svg' -import viteLogo from '/vite.svg' +import * as React from 'react' import './App.css' +import { FaRegPlusSquare } from "react-icons/fa"; + function App() { - const [count, setCount] = useState(0) return ( - <> -
- - Vite logo - - - React logo - +
+

KEVO'S ATTIRE BACKEND

+
+ {/* Add item */} + + {/* Table headings */} +
+ Item + Design Number + isActive +
+
+
    +
  • +
+
-

Vite + React

-
- -

- Edit src/App.tsx and save to test HMR -

-
-

- Click on the Vite and React logos to learn more -

- +
+ ) }