summaryrefslogtreecommitdiff
path: root/client/components/UI/Link.jsx
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2017-07-04 04:14:03 +0200
committerJules Laplace <julescarbon@gmail.com>2017-07-04 04:14:03 +0200
commitd520c67839724e80d8b68b8fe933f1e7755a8f42 (patch)
tree51188a9a3b7a125d1e79c899ba7058a280bcde50 /client/components/UI/Link.jsx
parent2263f412817d6d2d36372e7617feb0d97fa57af8 (diff)
writing task form in a reduxy way
Diffstat (limited to 'client/components/UI/Link.jsx')
-rw-r--r--client/components/UI/Link.jsx29
1 files changed, 29 insertions, 0 deletions
diff --git a/client/components/UI/Link.jsx b/client/components/UI/Link.jsx
new file mode 100644
index 0000000..f801979
--- /dev/null
+++ b/client/components/UI/Link.jsx
@@ -0,0 +1,29 @@
+import { h, Component } from 'preact'
+import React from 'react'
+// import PropTypes from 'prop-types'
+
+const Link = ({ active, children, onClick }) => {
+ if (active) {
+ return <span>{children}</span>
+ }
+
+ return (
+ // eslint-disable-next-line
+ <a href="#"
+ onClick={e => {
+ e.preventDefault()
+ onClick()
+ }}
+ >
+ {children}
+ </a>
+ )
+}
+
+// Link.propTypes = {
+// active: PropTypes.bool.isRequired,
+// children: PropTypes.node.isRequired,
+// onClick: PropTypes.func.isRequired
+// }
+
+export default Link