[Update] Config Page: MessageFormat: Add ui, message format.

This commit is contained in:
Sakamoto Shiina
2025-08-26 17:27:05 +09:00
parent e6bd0e32ed
commit 21e4714658
18 changed files with 784 additions and 46 deletions

View File

@@ -0,0 +1,10 @@
import styles from "./ResetButton.module.scss";
import RedoSvg from "@images/redo.svg?react";
export const ResetButton = ({ onClickFunction }) => {
return (
<button className={styles.reset_button} onClick={onClickFunction}>
<RedoSvg className={styles.reset_svg}/>
</button>
);
};