class-profile-2023/components/Panel.tsx

12 lines
257 B
TypeScript

import { ReactNode } from "react";
import styles from "./Panel.module.css";
export interface TextboxProps {
children: ReactNode;
}
export function Panel({ children }: TextboxProps) {
return <section className={styles.textbox}>{children}</section>;
}