From a5538e0b802b4b7bcc8ba79246063388a7ce8da6 Mon Sep 17 00:00:00 2001 From: Archmonger <16909269+Archmonger@users.noreply.github.com> Date: Sat, 30 Apr 2022 15:38:17 -0700 Subject: [PATCH] Change function name in readme example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8b51ee05f..740c301bc 100644 --- a/README.md +++ b/README.md @@ -21,10 +21,10 @@ To get a rough idea of how to write apps in IDOM, take a look at this tiny _Hell from idom import component, html, run @component -def App(): +def HelloWorld(): return html.h1("Hello, World!") -run(App) +run(HelloWorld) ``` # Resources