aboutsummaryrefslogtreecommitdiff
path: root/examples/react-fast-refresh-test/src/components/button.tsx
blob: 4c338867003c619e82a8906424a30112979dea7b (plain) (blame)
1
2
3
4
5
6
7
8
9
import { RenderCounter } from "./RenderCounter";

export const Button = ({ children }) => {
  return (
    <RenderCounter name="Button">
      <div className="Button">{children}</div>
    </RenderCounter>
  );
};