forked from hamcha/tghandbook
6 lines
103 B
TypeScript
6 lines
103 B
TypeScript
|
import * as React from "react";
|
||
|
|
||
|
export default function TabItem({ name }) {
|
||
|
return <p>{name}</p>;
|
||
|
}
|