added some examples

This commit is contained in:
szabomarton
2025-02-27 10:20:17 +01:00
parent 83e3f5b666
commit 8da79ee38c
47 changed files with 19708 additions and 2 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();
});