From 9024a3f18650b199e5523706173b9c84f7226a69 Mon Sep 17 00:00:00 2001 From: krutoo Date: Thu, 20 Jun 2024 17:37:52 +0500 Subject: [PATCH] readme code example fix syntax --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3e306ac..208fb49 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ import { SandboxApp } from '@krutoo/showcase/runtime-sandbox'; import foundStories from '#found-stories'; // render your current story to the root element -createRoot(document.getElementById('root')!).render( +createRoot(document.getElementById('root')).render( , ); ```