mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
10 lines
213 B
TypeScript
10 lines
213 B
TypeScript
import { RenderCounter } from "./RenderCounter";
|
|
|
|
export const Button = ({ children }) => {
|
|
return (
|
|
<RenderCounter name="Button">
|
|
<div className="Button">{children}</div>
|
|
</RenderCounter>
|
|
);
|
|
};
|