31 lines
812 B
TypeScript
31 lines
812 B
TypeScript
export const CSV_FILE = [
|
|
['id', 'name', 'age'],
|
|
['1', 'Maria Bertelson', '41'],
|
|
['2', 'Pamela Stobb', '16'],
|
|
['3', 'Roger Barcio', '22'],
|
|
['4', 'Harold Dahlen', '37'],
|
|
['5', 'Barry Franz', '38'],
|
|
['6', 'Henia Zydlo', '87'],
|
|
['7', 'Keith Dawkins', '66'],
|
|
['8', 'Theone Pippenger', '45'],
|
|
['9', 'Tamara Dahlen', '18'],
|
|
['10', 'Henry Goldwyn', '26'],
|
|
];
|
|
|
|
export const XLSX_FILE = {
|
|
Sheet1: [
|
|
['id', 'name', 'age'],
|
|
['1', 'Maria Bertelson', '41'],
|
|
['2', 'Pamela Stobb', '16'],
|
|
['3', 'Roger Barcio', '22'],
|
|
['4', 'Harold Dahlen', '37'],
|
|
],
|
|
Sheet2: [
|
|
['id', 'city', 'phone'],
|
|
['1', 'NY', '1234'],
|
|
['2', 'LA', '5678'],
|
|
['3', 'Moscow', '9012'],
|
|
['4', 'Amsterdam', '3456'],
|
|
],
|
|
};
|