create-nova-expo-template
Version:
A template for creating a new React Native app using Expo and TypeScript, with a focus on performance and best practices.
10 lines (9 loc) • 367 B
text/typescript
// Dummy data for demonstrating cards in the template
export const cardListData = [
...Array.from({ length: 50 }, (_, i) => ({
id: i + 1,
title: `Card Title ${i + 1}`,
description: `This is a description for card ${i + 1}. It provides a brief summary of the card content.`,
date: `2025-06-${(i + 1).toString().padStart(2, '0')}`,
})),
];