[Update] Migrate to tauri-app(Web UI)
This commit is contained in:
17
src-ui/windows/config_window/topbar/Topbar.jsx
Normal file
17
src-ui/windows/config_window/topbar/Topbar.jsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import styles from "./Topbar.module.scss";
|
||||
|
||||
import { TitleBox } from "./title_box/TitleBox";
|
||||
import { SectionTitleBox } from "./section_title_box/SectionTitleBox";
|
||||
import { CompactSwitchBox } from "./compact_switch_box/CompactSwitchBox";
|
||||
|
||||
export const Topbar = () => {
|
||||
return (
|
||||
<div className={styles.container}>
|
||||
<div className={styles.wrapper}>
|
||||
<TitleBox />
|
||||
<SectionTitleBox />
|
||||
<CompactSwitchBox />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user