This commit is contained in:
dmitry-vsl
2025-05-30 19:59:02 +00:00
parent 1a30311de4
commit 75b1c5e942
30 changed files with 959 additions and 832 deletions

View File

@@ -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