From 3e7b2beca1136a42700a7e1aebfe4c0fb2861a00 Mon Sep 17 00:00:00 2001 From: soryu Date: Sat, 15 Nov 2025 18:00:09 +0000 Subject: Initial commit --- frontend/src/components/TopBar.tsx | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 frontend/src/components/TopBar.tsx (limited to 'frontend/src/components/TopBar.tsx') diff --git a/frontend/src/components/TopBar.tsx b/frontend/src/components/TopBar.tsx new file mode 100644 index 0000000..89d7206 --- /dev/null +++ b/frontend/src/components/TopBar.tsx @@ -0,0 +1,24 @@ +import React from 'react' + +type Props = { + title?: string + status?: string +} + +export const TopBar: React.FC = ({ title = 'PC-98 VISUAL NOVEL', status = 'IDLE' }) => { + return ( +
+
+ + FILE + SAVE + LOAD + CONFIG +
+
{title}
+
+ {status} +
+
+ ) +} -- cgit v1.2.3