-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.js
More file actions
18 lines (18 loc) · 680 Bytes
/
App.js
File metadata and controls
18 lines (18 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import React, { useState, useEffect } from "react";
import { ThemeProvider } from "styled-components/native";
import { StatusBar } from "expo-status-bar";
import { StyleSheet, Text, View } from "react-native";
import { NotesScreen } from "./src/features/notes/screens/notes.screen";
import { colors } from "./src/infrastructure/theme/colors";
import { theme } from "./src/infrastructure/theme";
import { Navigation } from "./src/infrastructure/navigation/index";
export default function App() {
return (
<>
<ThemeProvider theme={theme}>
<Navigation />
</ThemeProvider>
<StatusBar style="light" backgroundColor={colors.bg.primary} />
</>
);
}