mirror of
https://github.com/movie-web/extension.git
synced 2025-09-13 10:33:25 +00:00
12 lines
222 B
TypeScript
12 lines
222 B
TypeScript
import type { ReactNode } from 'react';
|
|
|
|
import './Frame.css';
|
|
|
|
export interface FrameProps {
|
|
children?: ReactNode;
|
|
}
|
|
|
|
export function Frame(props: FrameProps) {
|
|
return <div className="frame">{props.children}</div>;
|
|
}
|