From 7063c04dec48fcabcda104c42d61642a554f6044 Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Mon, 28 Jun 2021 10:46:10 -0500 Subject: Restructure examples (#568) * rename kitchen sink, pull out react example * split out the rest of the examples * align versions * chore: rename examples * chore: normalize gitignore * chore: update package versions * chore: move framework examples to `framework` namespace * docs: add README to examples Co-authored-by: Austin Crim --- .../src/components/PreactCounter.tsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 examples/framework-multiple/src/components/PreactCounter.tsx (limited to 'examples/framework-multiple/src/components/PreactCounter.tsx') diff --git a/examples/framework-multiple/src/components/PreactCounter.tsx b/examples/framework-multiple/src/components/PreactCounter.tsx new file mode 100644 index 000000000..be4ddb6ce --- /dev/null +++ b/examples/framework-multiple/src/components/PreactCounter.tsx @@ -0,0 +1,20 @@ +import { h, Fragment } from 'preact'; +import { useState } from 'preact/hooks'; + +/** a counter written in Preact */ +export function PreactCounter({ children }) { + const [count, setCount] = useState(0); + const add = () => setCount((i) => i + 1); + const subtract = () => setCount((i) => i - 1); + + return ( + <> +
+ +
{count}
+ +
+
{children}
+ + ); +} -- cgit v1.2.3