UNPKG

react-hover-fill-button

Version:
11 lines 335 B
import React from 'react'; import { render } from 'react-dom'; import Button from '../../src'; const App = () => ( <Button onClick={() => alert("Ciaone")} borderWidth="10px" className="button-bello" fillBackground="rebeccapurple" fillTextColor="red">Ciao</Button> ); render(<App />, document.getElementById("root"));