From c436e08b103ca4f24bde0183760e5d48e763d361 Mon Sep 17 00:00:00 2001 From: Rodolfo Ruiz Date: Wed, 11 Jun 2025 16:42:05 -0600 Subject: [PATCH] chore: move components to a correct folder --- src/App.jsx | 14 ++++---------- .../{ => products}/AddOrEditProductForm.jsx | 4 ++-- src/private/{Admin.jsx => products/Products.jsx} | 13 +++++-------- 3 files changed, 11 insertions(+), 20 deletions(-) rename src/private/{ => products}/AddOrEditProductForm.jsx (97%) rename src/private/{Admin.jsx => products/Products.jsx} (94%) diff --git a/src/App.jsx b/src/App.jsx index b318172..a5f8972 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,11 +1,9 @@ import { useState } from 'react' -import Background from "./components/Background"; -import VideoBackground from "./components/VimeoEmbed"; import AppHeader from './components/AppHeader'; import Footer from './components/Footer'; import Box from '@mui/material/Box'; -import Admin from './private/Admin'; +import Products from './private/products/Products'; import './App.css' @@ -14,10 +12,6 @@ function App() { return ( <> - - {/* */} - {/* */} - - {zone === 'private' && } - {zone === 'restricted' && } - {zone === 'public' && } + {zone === 'private' && } + {zone === 'restricted' && } + {zone === 'public' && }