aboutsummaryrefslogtreecommitdiff
path: root/demos/simple-react/src/components/button.tsx
blob: ff55d2687217a76e8f2f8dd8559f449904ac5f27 (plain) (blame)
1
2
3
4
5
6
7
import React from "react";

export const Button = ({ label, label2, onClick }) => (
  <div className="Button" onClick={onClick}>
    <div className="Button-label">{label}13</div>
  </div>
);