From e4065839e29f101d45b860daf9ce256984c5016d Mon Sep 17 00:00:00 2001 From: hyochan Date: Thu, 2 Nov 2023 23:02:06 +0900 Subject: [PATCH] chore: update template --- templates/expo/app/Page.tsx | 12 +++--------- templates/expo/uis/UI.tsx | 2 +- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/templates/expo/app/Page.tsx b/templates/expo/app/Page.tsx index 5925cc7..865e073 100644 --- a/templates/expo/app/Page.tsx +++ b/templates/expo/app/Page.tsx @@ -1,9 +1,7 @@ -import styled, {css} from '@emotion/native'; +import styled from '@emotion/native'; import {Typography} from 'dooboo-ui'; import {Stack} from 'expo-router'; -import {t} from '../src/STRINGS'; - const Container = styled.View` flex: 1; align-self: stretch; @@ -19,13 +17,9 @@ type Props = {}; export default function Page({}: Props): JSX.Element { return ( - + - {t('PAGE')} + Page ); diff --git a/templates/expo/uis/UI.tsx b/templates/expo/uis/UI.tsx index e6b83b5..ad71744 100644 --- a/templates/expo/uis/UI.tsx +++ b/templates/expo/uis/UI.tsx @@ -21,7 +21,7 @@ function Component({style}: Props): JSX.Element { style, ]} > - + ); }