Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created March 13, 2020 05:52
Show Gist options
  • Save jsmanifest/5e8b7f980d2e558069ffccebd2ea7f20 to your computer and use it in GitHub Desktop.
Save jsmanifest/5e8b7f980d2e558069ffccebd2ea7f20 to your computer and use it in GitHub Desktop.
import React from 'react'
function MyButton({ children, ...rest }) {
return (
<button onClick={(e) => window.alert(e.currentTarget.name)} {...rest}>
{children}
</button>
)
}
function App() {
return (
<div>
<MyButton name="alerter">Alert</MyButton>
</div>
)
}
export default App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment