Initial commit

Generated by create-expo-app 3.5.1.
This commit is contained in:
2025-08-16 19:40:32 +05:00
commit 0072a1ed2a
27 changed files with 11579 additions and 0 deletions

View File

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