browser-ext/src/components/Frame.tsx
Cooper Ransom 57b1df466f init
2024-04-25 14:16:30 -04:00

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