blob: 3c62b1816c53f1d081e71eafbdc2977f9345db02 (
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}111</div>
</div>
);
|