diff --git a/client/src/mocks/index.ts b/client/src/mocks/index.ts index 6c5d108..e637c33 100644 --- a/client/src/mocks/index.ts +++ b/client/src/mocks/index.ts @@ -1,6 +1,7 @@ -import { Excel, ExcelSpreadsheet, User } from "../types"; +import { Excel, ExcelSpreadsheet } from "../types"; import { utils } from "../utils/utils"; +/* const users: User[] = [ { name: "john", @@ -21,6 +22,7 @@ const users: User[] = [ phone: 21314124, }, ]; +*/ const excels: Excel[] = [ utils.createMockExcelFile("Excel1", 1024), @@ -76,4 +78,4 @@ const excelSpreadsheets: ExcelSpreadsheet[] = [ }, ]; -export const mocks = { users, excels, excelSpreadsheets }; +export const mocks = { excels, excelSpreadsheets };