Initial commit

Generated by create-expo-app 3.3.0.
This commit is contained in:
Late Night Defender 2025-04-15 16:40:43 +07:00
commit 84c0d8ecd0
38 changed files with 15429 additions and 0 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();
});