Readded directories with uppercase

This commit is contained in:
Keannu Christian Bernasol 2023-02-24 17:22:12 +08:00
parent d54e6be430
commit 101a8e8ae6
21 changed files with 737 additions and 0 deletions

View file

@ -0,0 +1,20 @@
import React from "react";
import Sidebar from "../Sidebar/Sidebar";
import Header from "../Header/Header";
import styles from "../../styles";
export interface props {
children: React.ReactNode;
}
export default function Container(props: props) {
return (
<div>
<Header />
<div style={{ width: "15%", position: "fixed" }}>
<Sidebar />
</div>
<div style={styles.route_wrapper}>{props.children}</div>
</div>
);
}