[Update] Migrate to tauri-app(Web UI)
This commit is contained in:
20
src-ui/windows/config_window/ConfigWindow.jsx
Normal file
20
src-ui/windows/config_window/ConfigWindow.jsx
Normal file
@@ -0,0 +1,20 @@
|
||||
import "../../../locales/config.js";
|
||||
import "@utils/root.css";
|
||||
|
||||
import styles from "./ConfigWindow.module.scss";
|
||||
|
||||
import { Topbar } from "./topbar/Topbar";
|
||||
import { SidebarSection } from "./sidebar_section/SidebarSection";
|
||||
import { SettingSection } from "./setting_section/SettingSection.jsx";
|
||||
|
||||
export const ConfigWindow = () => {
|
||||
return (
|
||||
<div className={styles.container}>
|
||||
<Topbar />
|
||||
<div className={styles.main_container}>
|
||||
<SidebarSection />
|
||||
<SettingSection />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user