아으으아으악 하라고 하는거 다 햇는데.... ㅠㅠㅠ 일단 1주차 import React, { useState } from 'react';import styled from 'styled-components';type Todo = { id: string; text: string; completed: boolean;};const TodoApp = () => { const [todos, setTodos] = useState([]); const [inputValue, setInputValue] = useState(''); const addTodo = () => { if (inputValue.trim() === '') return; const newTodo: Todo = { id: ..