mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-25 00:49:32 +02:00
feat: initial commit
This commit is contained in:
10
src/pages/images/ImagesConfig.tsx
Normal file
10
src/pages/images/ImagesConfig.tsx
Normal 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},
|
||||
]
|
5
src/pages/images/index.tsx
Normal file
5
src/pages/images/index.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import {Box} from "@mui/material";
|
||||
|
||||
export default function ImageHome() {
|
||||
return (<Box></Box>)
|
||||
}
|
10
src/pages/images/png/PngConfig.tsx
Normal file
10
src/pages/images/png/PngConfig.tsx
Normal 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/>}
|
||||
]
|
5
src/pages/images/png/change-colors-in-png/index.tsx
Normal file
5
src/pages/images/png/change-colors-in-png/index.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import { Box } from "@mui/material";
|
||||
|
||||
export default function ChangeColorsInPng(){
|
||||
return(<Box></Box>)
|
||||
}
|
5
src/pages/images/png/index.tsx
Normal file
5
src/pages/images/png/index.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import {Box} from "@mui/material";
|
||||
|
||||
export default function PngHome() {
|
||||
return (<Box></Box>)
|
||||
}
|
Reference in New Issue
Block a user