diff options
Diffstat (limited to 'examples/framework-multiple/src/components')
5 files changed, 127 insertions, 0 deletions
diff --git a/examples/framework-multiple/src/components/preact/PreactCounter.tsx b/examples/framework-multiple/src/components/preact/PreactCounter.tsx new file mode 100644 index 000000000..5ad164cc2 --- /dev/null +++ b/examples/framework-multiple/src/components/preact/PreactCounter.tsx @@ -0,0 +1,22 @@ +/** @jsxImportSource preact */ + +import { useState } from 'preact/hooks'; +import type { ComponentChildren } from 'preact'; + +/** A counter written with Preact */ +export function PreactCounter({ children }: { children?: ComponentChildren }) { + const [count, setCount] = useState(0); + const add = () => setCount((i) => i + 1); + const subtract = () => setCount((i) => i - 1); + + return ( + <> + <div class="counter"> + <button onClick={subtract}>-</button> + <pre>{count}</pre> + <button onClick={add}>+</button> + </div> + <div class="counter-message">{children}</div> + </> + ); +} diff --git a/examples/framework-multiple/src/components/react/ReactCounter.tsx b/examples/framework-multiple/src/components/react/ReactCounter.tsx new file mode 100644 index 000000000..84681035d --- /dev/null +++ b/examples/framework-multiple/src/components/react/ReactCounter.tsx @@ -0,0 +1,21 @@ +/** @jsxImportSource react */ + +import { useState, type ReactNode } from 'react'; + +/** A counter written with React */ +export function Counter({ children }: { children?: ReactNode }) { + const [count, setCount] = useState(0); + const add = () => setCount((i) => i + 1); + const subtract = () => setCount((i) => i - 1); + + return ( + <> + <div className="counter"> + <button onClick={subtract}>-</button> + <pre>{count}</pre> + <button onClick={add}>+</button> + </div> + <div className="counter-message">{children}</div> + </> + ); +} diff --git a/examples/framework-multiple/src/components/solid/SolidCounter.tsx b/examples/framework-multiple/src/components/solid/SolidCounter.tsx new file mode 100644 index 000000000..cb9219608 --- /dev/null +++ b/examples/framework-multiple/src/components/solid/SolidCounter.tsx @@ -0,0 +1,21 @@ +/** @jsxImportSource solid-js */ + +import { createSignal, type JSX } from 'solid-js'; + +/** A counter written with Solid */ +export default function SolidCounter(props: { children?: JSX.Element }) { + const [count, setCount] = createSignal(0); + const add = () => setCount(count() + 1); + const subtract = () => setCount(count() - 1); + + return ( + <> + <div id="solid" class="counter"> + <button onClick={subtract}>-</button> + <pre>{count()}</pre> + <button onClick={add}>+</button> + </div> + <div class="counter-message">{props.children}</div> + </> + ); +} diff --git a/examples/framework-multiple/src/components/svelte/SvelteCounter.svelte b/examples/framework-multiple/src/components/svelte/SvelteCounter.svelte new file mode 100644 index 000000000..641312ae1 --- /dev/null +++ b/examples/framework-multiple/src/components/svelte/SvelteCounter.svelte @@ -0,0 +1,30 @@ +<!-- @component +A counter written with Svelte +--> +<script lang="ts"> + import type { Snippet } from 'svelte'; + + interface Props { + children?: Snippet + } + + let { children }: Props = $props(); + let count = $state(0); + + function add() { + count += 1; + } + + function subtract() { + count -= 1; + } +</script> + +<div class="counter"> + <button onclick={subtract}>-</button> + <pre>{count}</pre> + <button onclick={add}>+</button> +</div> +<div class="counter-message"> + {@render children?.()} +</div> diff --git a/examples/framework-multiple/src/components/vue/VueCounter.vue b/examples/framework-multiple/src/components/vue/VueCounter.vue new file mode 100644 index 000000000..74820f7f0 --- /dev/null +++ b/examples/framework-multiple/src/components/vue/VueCounter.vue @@ -0,0 +1,33 @@ +<template> + <!-- + Seeing type errors on the word `class`? + This unfortunately happens because @types/react's JSX definitions leak into every file due to being declared globally. + There's currently no way to prevent this when using both Vue and React with TypeScript in the same project. + You can read more about this issue here: https://github.com/johnsoncodehk/volar/discussions/592 + --> + <div class="counter"> + <button @click="subtract()">-</button> + <pre>{{ count }}</pre> + <button @click="add()">+</button> + </div> + <div class="counter-message"> + <slot /> + </div> +</template> + +<script lang="ts"> +import { ref } from 'vue'; +export default { + setup() { + const count = ref(0); + const add = () => (count.value = count.value + 1); + const subtract = () => (count.value = count.value - 1); + + return { + count, + add, + subtract, + }; + }, +}; +</script> |