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,
]}
>
-
+
);
}