mirror of
https://github.com/10h30/astroplate.git
synced 2026-06-05 15:08:00 +09:00
8 lines
180 B
TypeScript
8 lines
180 B
TypeScript
import React from "react";
|
|
|
|
function Tab({ name, children }: { name: string; children: React.ReactNode }) {
|
|
return <div data-name={name}>{children}</div>;
|
|
}
|
|
|
|
export default Tab;
|