List 목록이 들어가는 TodoList를 만들 것이다.
import React from "react";
import styled from "styled-components";
export default function TodoList() {
return (
<Container>
<ListText>TodoList 컴포넌트 입니다.</ListText>
</Container>
);
}
const Container = styled.ScrollView`
align-content: center;
`;
const ListText = styled.Text`
text-align: center;
font-size: 20px;
`;