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 -

- +
+ ) }