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

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