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

3
lib/constants.ts Normal file
View File

@@ -0,0 +1,3 @@
export const SPEND_SCREEN_ID = 'spend-screen';
export const SPEND_SCREEN_NAME = 'Spend';
export const APP_NAME = 'SpendIA';

4
lib/types.d.ts vendored Normal file
View File

@@ -0,0 +1,4 @@
export interface Tab {
title: string;
id: string;
}