mirror of
https://github.com/leporello-js/leporello-js
synced 2026-01-14 05:14:28 -08:00
deploy: leporello-js/app@a6e3f1b36f
This commit is contained in:
@@ -1,13 +1,16 @@
|
||||
const h = React.createElement
|
||||
|
||||
const Link = ({ active, children, onClick }) => (
|
||||
h('button', {
|
||||
onClick,
|
||||
disabled: active,
|
||||
style:{
|
||||
marginLeft: '4px',
|
||||
}
|
||||
}, children)
|
||||
)
|
||||
const Link = ({ active, children, onClick }) =>
|
||||
h(
|
||||
"button",
|
||||
{
|
||||
onClick,
|
||||
disabled: active,
|
||||
style: {
|
||||
marginLeft: "4px",
|
||||
},
|
||||
},
|
||||
children,
|
||||
)
|
||||
|
||||
export default Link
|
||||
|
||||
Reference in New Issue
Block a user