11 lines
239 B
TypeScript
11 lines
239 B
TypeScript
import React from "react";
|
|
|
|
interface TabProps {
|
|
label: string;
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export default function Tab({ label, children }: TabProps): JSX.Element {
|
|
return <div data-tab-label={label}>{children}</div>;
|
|
}
|