feat: implement initial finance application structure with asset and goal management

This commit is contained in:
2025-11-19 23:00:37 +00:00
commit 60360e8eb9
28 changed files with 641 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();
});