mirror of
https://github.com/sussy-code/browser-ext.git
synced 2026-01-11 20:10:17 +00:00
11 lines
222 B
TypeScript
11 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>;
|
|
}
|