+
+
+
+
+ >
+ )
+}
+
+export default Code
diff --git a/src/components/counter.tsx b/src/components/counter.tsx
new file mode 100644
index 0000000..d2ed70f
--- /dev/null
+++ b/src/components/counter.tsx
@@ -0,0 +1,15 @@
+import React, { useState } from 'react'
+
+const Counter = ({ initialValue }) => {
+ const [clicks, setClicks] = useState(initialValue)
+
+ return (
+ Count: {clicks}
+ + ++ Read more +
+