For now, I put Config Page to below the main page temporary. Open Config Button does not work.
12 lines
340 B
JavaScript
12 lines
340 B
JavaScript
import styles from "./SettingSection.module.scss";
|
|
import { SettingBox } from "./setting_box/SettingBox";
|
|
|
|
export const SettingSection = () => {
|
|
return (
|
|
<div className={styles.scroll_container}>
|
|
<div className={styles.container}>
|
|
<SettingBox />
|
|
</div>
|
|
</div>
|
|
);
|
|
}; |