From d2b1d55ff1e8b85c6304a505a9cad67dc889291b Mon Sep 17 00:00:00 2001 From: Romuald Brillout Date: Thu, 8 Aug 2024 20:09:49 +0200 Subject: [PATCH] use --- examples/full/pages/images/+Page.tsx | 29 +++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/examples/full/pages/images/+Page.tsx b/examples/full/pages/images/+Page.tsx index d7cd5cc..674a4e2 100644 --- a/examples/full/pages/images/+Page.tsx +++ b/examples/full/pages/images/+Page.tsx @@ -4,6 +4,7 @@ import { Head } from "vike-solid/Head"; import logoOld from "../../assets/logo.svg"; import logoNew from "../../assets/logo-new.svg"; import { Counter } from "../../components/Counter"; +import { Show } from "solid-js"; function Page() { return ( @@ -29,19 +30,21 @@ function Image({ src, author }: { src: string; author: string }) { return ( <> - - - + + + + + ); }