new todo frontend

This commit is contained in:
Guy Bianco IV
2021-05-19 13:18:48 -04:00
parent 20d773370e
commit f8735da820
48 changed files with 12125 additions and 955 deletions

View File

@@ -0,0 +1,7 @@
/**
* Component for displaying a loading message.
* Very simple right now, but could be refactored to match a style guide.
*/
export function Loading(props: { name: string }) {
return <span>Loading {props.name}...</span>;
}