Skip to content

Commit b0c7f93

Browse files
authored
Change function name in readme example (#750)
1 parent d157e10 commit b0c7f93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ To get a rough idea of how to write apps in IDOM, take a look at this tiny _Hell
2121
from idom import component, html, run
2222

2323
@component
24-
def App():
24+
def HelloWorld():
2525
return html.h1("Hello, World!")
2626

27-
run(App)
27+
run(HelloWorld)
2828
```
2929

3030
# Resources

0 commit comments

Comments
 (0)