[Expo-TodoList] TodoList 컴포넌트 생성

MOON·2020년 8월 5일
0

TodoList 생성

List 목록이 들어가는 TodoList를 만들 것이다.

#1 List만들기

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;
`;

0개의 댓글