feat: initial commit

This commit is contained in:
Ibrahima G. Coulibaly
2024-06-19 19:10:14 +01:00
parent 2cb7ce23db
commit 3757717bcf
16 changed files with 959 additions and 268 deletions

View File

@@ -0,0 +1,10 @@
import {RouteObject} from "react-router-dom";
import {lazy} from "react";
import {PngConfig} from "./png/PngConfig";
const PngHome = lazy(() => import("./index"));
export const ImagesConfig: RouteObject[] = [
{path: '', element: <PngHome/>},
{path: 'png', children: PngConfig},
]

View File

@@ -0,0 +1,5 @@
import {Box} from "@mui/material";
export default function ImageHome() {
return (<Box></Box>)
}

View File

@@ -0,0 +1,10 @@
import {RouteObject} from "react-router-dom";
import {lazy} from "react";
const ChangeColorsInPng = lazy(() => import("./change-colors-in-png"));
const PngHome = lazy(() => import("./"));
export const PngConfig: RouteObject[] = [
{path: '', element: <PngHome/>},
{path: 'change-colors-in-png', element: <ChangeColorsInPng/>}
]

View File

@@ -0,0 +1,5 @@
import { Box } from "@mui/material";
export default function ChangeColorsInPng(){
return(<Box></Box>)
}

View File

@@ -0,0 +1,5 @@
import {Box} from "@mui/material";
export default function PngHome() {
return (<Box></Box>)
}