integration of next.js

This commit is contained in:
2023-04-04 23:06:47 -03:00
parent 4a2364cb7b
commit e5c37b9449
21 changed files with 68 additions and 396 deletions

View File

@@ -0,0 +1,10 @@
import React from 'react';
import { PieCircle } from '@/components';
export const SpendScreen = (): JSX.Element => {
return (
<>
<PieCircle />
</>
);
};

View File

@@ -0,0 +1 @@
export * from './SpendScreen';