diff --git a/src/components/system/Window/Window.tsx b/src/components/system/Window/Window.tsx new file mode 100644 index 0000000..0b484ba --- /dev/null +++ b/src/components/system/Window/Window.tsx @@ -0,0 +1,19 @@ +import { Fragment } from 'react' + +import { TitleBar } from '../TitleBar' + +interface WindowProps { + children: React.ReactNode +} + +export const Window: React.FC = ({ children }) => { + return ( + + + +
+ {children} +
+
+ ) +} diff --git a/src/components/system/Window/index.ts b/src/components/system/Window/index.ts new file mode 100644 index 0000000..4645aaa --- /dev/null +++ b/src/components/system/Window/index.ts @@ -0,0 +1 @@ +export * from './Window'