Begin migration to expo-router

This commit is contained in:
Niklas Korz 2024-08-22 14:29:57 +02:00
parent e373deb347
commit 0347ee6fb7
117 changed files with 8776 additions and 11935 deletions

View file

@ -0,0 +1,10 @@
import * as React from 'react';
import renderer from 'react-test-renderer';
import { ThemedText } from '../ThemedText';
it(`renders correctly`, () => {
const tree = renderer.create(<ThemedText>Snapshot test!</ThemedText>).toJSON();
expect(tree).toMatchSnapshot();
});