[Update/Refactor] Move files to main container.

This commit is contained in:
Sakamoto Shiina
2025-02-13 05:28:00 +09:00
parent 31deeae53f
commit eb81fae2a0
4 changed files with 7 additions and 10 deletions

View File

@@ -2,7 +2,6 @@ import clsx from "clsx";
import styles from "./MainPage.module.scss";
import { SidebarSection } from "./sidebar_section/SidebarSection";
import { MainSection } from "./main_section/MainSection";
import { PluginsSection } from "./plugins_section/PluginsSection";
import { useIsOpenedConfigPage } from "@logics_common";
export const MainPage = () => {
@@ -16,7 +15,6 @@ export const MainPage = () => {
<div className={styles.container}>
<SidebarSection />
<MainSection />
<PluginsSection />
</div>
</div>
);