Add missing type assertion

This commit is contained in:
mathieuprog
2022-06-29 14:12:57 +02:00
parent 492c5a21b0
commit 87208b56fa
+1 -1
View File
@@ -2,4 +2,4 @@ import { render } from 'solid-js/web';
import { TodoList } from './todo-list';
render(() => <TodoList />, document.getElementById('root'));
render(() => <TodoList />, document.getElementById('root') as HTMLElement);