mirror of
https://github.com/FranP-code/spend-ia.git
synced 2025-10-13 00:14:09 +00:00
11 lines
172 B
TypeScript
11 lines
172 B
TypeScript
import React from 'react';
|
|
import { PieCircle } from '@/components';
|
|
|
|
export const SpendScreen = (): JSX.Element => {
|
|
return (
|
|
<>
|
|
<PieCircle />
|
|
</>
|
|
);
|
|
};
|