feat: add base styles and base routes

This commit is contained in:
2025-04-17 12:24:03 +05:00
parent 51227bfd7b
commit 583d2005a7
13 changed files with 259 additions and 59 deletions

View File

@@ -0,0 +1,9 @@
import Header from '../components/Header';
export default function ProcessDiagramPage() {
return (
<>
<Header title="Схемы процессов" />
</>
);
}