mirror of
https://github.com/FranP-code/spend-ia.git
synced 2025-10-13 00:14:09 +00:00
18 lines
303 B
TypeScript
18 lines
303 B
TypeScript
import { SPEND_SCREEN_ID, SPEND_SCREEN_NAME } from 'utils/constants';
|
|
import { type Tab } from '../../lib/types';
|
|
|
|
export const tabs: Tab[] = [
|
|
{
|
|
id: 'tab-1',
|
|
title: 'Tab 1',
|
|
},
|
|
{
|
|
id: SPEND_SCREEN_ID,
|
|
title: SPEND_SCREEN_NAME,
|
|
},
|
|
{
|
|
id: 'tab-3',
|
|
title: 'Tab 3',
|
|
},
|
|
];
|