/
votchitsev
/
react-native-animations-tutorial
Обзор
Документация
Войти
/
votchitsev
/
react-native-animations-tutorial
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
App.tsx
23 строки
591 B
Dmitry
feat: images vertical list
24 янв 2025, 21:46
24 янв 2025, 21:46
bed9bbc
Код
Авторство
О чём код?
import { StyleSheet, View } from "react-native"; import { QueryClientProvider } from "@tanstack/react-query"; import { queryClient } from "./query-client"; import { ImagesVerticalList } from "@components/ImagesVerticalList"; export default function App() { return ( <QueryClientProvider client={queryClient}> <View style={styles.container}> <ImagesVerticalList /> </View> </QueryClientProvider> ); } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: "#fff", alignItems: "center", justifyContent: "center", }, });