[Update/TMP] Add feature Scheduled message send.

This commit is contained in:
Sakamoto Shiina
2025-02-12 14:32:48 +09:00
parent 26a3e868e2
commit 65ee75b49e
3 changed files with 510 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ 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 = () => {
@@ -15,6 +16,7 @@ export const MainPage = () => {
<div className={styles.container}>
<SidebarSection />
<MainSection />
<PluginsSection />
</div>
</div>
);