From 561cbee68f1e4e2a85d5379129bba82fea5138a1 Mon Sep 17 00:00:00 2001 From: natemoo-re Date: Wed, 21 Jul 2021 23:11:40 +0000 Subject: [ci] yarn format --- examples/framework-multiple/src/components/PreactSFC.tsx | 4 +--- examples/framework-multiple/src/components/SolidCounter.tsx | 6 ++---- 2 files changed, 3 insertions(+), 7 deletions(-) (limited to 'examples/framework-multiple/src') diff --git a/examples/framework-multiple/src/components/PreactSFC.tsx b/examples/framework-multiple/src/components/PreactSFC.tsx index a92e258f8..3638caebd 100644 --- a/examples/framework-multiple/src/components/PreactSFC.tsx +++ b/examples/framework-multiple/src/components/PreactSFC.tsx @@ -4,9 +4,7 @@ export default function PreactSFC({ children }) { return ( <> -
- Hello from Preact! -
+
Hello from Preact!
); } diff --git a/examples/framework-multiple/src/components/SolidCounter.tsx b/examples/framework-multiple/src/components/SolidCounter.tsx index 0ec274bb4..5a9ebe9d5 100644 --- a/examples/framework-multiple/src/components/SolidCounter.tsx +++ b/examples/framework-multiple/src/components/SolidCounter.tsx @@ -1,4 +1,4 @@ -import { createSignal } from "solid-js"; +import { createSignal } from 'solid-js'; /** a counter written with Solid */ export default function SolidCounter({ children }) { @@ -13,9 +13,7 @@ export default function SolidCounter({ children }) {
{count()}
-
- {children} -
+
{children}
); } -- cgit v1.2.3