mirror of
https://github.com/movie-web/extension.git
synced 2025-09-13 05:33:24 +00:00
10 lines
217 B
TypeScript
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>;
|
|
}
|