Files
extension/src/components/Frame.tsx
2024-01-10 19:27:20 +01:00

10 lines
217 B
TypeScript

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>;
}