[FYP]: Structuring

This commit is contained in:
2024-11-04 19:53:55 +00:00
parent 7f2d538238
commit ec8a46e986
43 changed files with 20962 additions and 102 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();
});