Functionality and state for popout

This commit is contained in:
mrjvs
2024-01-10 19:27:20 +01:00
parent 3a8144ee67
commit 5a3268fd29
13 changed files with 141 additions and 63 deletions

9
src/components/Frame.tsx Normal file
View File

@@ -0,0 +1,9 @@
import type { ReactNode } from 'react';
export interface FrameProps {
children?: ReactNode;
}
export function Frame(props: FrameProps) {
return <div style={{ width: 300, height: 300 }}>{props.children}</div>;
}