diff --git a/frontend/src/Components/TaskList.tsx b/frontend/src/Components/TaskList.tsx
new file mode 100644
index 0000000..1e9cb76
--- /dev/null
+++ b/frontend/src/Components/TaskList.tsx
@@ -0,0 +1,36 @@
+/**
+ * The shape of a task
+ */
+interface Task {
+ id: number;
+ name: string;
+}
+
+/**
+ * The props for the TaskList component
+ */
+interface TaskProps {
+ tasks: Task[];
+}
+
+/**
+ * A simple list of tasks
+ * @param props - The tasks to display
+ * @returns {JSX.Element} The task list
+ * @example
+ * const tasks = [{ id: 1, name: "Do the thing" }];
+ * return ;
+ */
+export function TaskList(props: TaskProps): JSX.Element {
+ return (
+
+
Task List
+
Tasks go here
+
+ {props.tasks.map((task) => (
+ - {task.name}
+ ))}
+
+
+ );
+}
diff --git a/frontend/src/Containers/ContainerDemo.tsx b/frontend/src/Containers/ContainerDemo.tsx
new file mode 100644
index 0000000..ac1cfc6
--- /dev/null
+++ b/frontend/src/Containers/ContainerDemo.tsx
@@ -0,0 +1,24 @@
+import { ReactNode } from "react";
+
+/** The props for the container */
+interface ContainerProps {
+ children: ReactNode;
+}
+
+/**
+ * Contains children
+ * @param props - The children to contain
+ * @returns {JSX.Element} The container
+ */
+export function Container(props: ContainerProps): JSX.Element {
+ return {props.children}
;
+}
+
+/**
+ * Contains even more children
+ * @param props
+ * @returns {JSX.Element}
+ */
+export function Container2(props: ContainerProps): JSX.Element {
+ return {props.children};
+}