mobigrid-module 1.0.5 → 1.0.6
Sign up to get free protection for your applications and to get access to all the features.
package/index.tsx
CHANGED
@@ -2,11 +2,11 @@ import React from "react";
|
|
2
2
|
import { useEffect, useState } from "react";
|
3
3
|
import { format } from "date-fns";
|
4
4
|
import axios from "axios";
|
5
|
-
import { Alert, AlertTitle, AlertDescription } from "./components/ui/alert";
|
5
|
+
import { Alert, AlertTitle, AlertDescription } from "./components/ui/alert.tsx";
|
6
6
|
import { AlertCircle } from "lucide-react";
|
7
|
-
import { PageHeader } from "./components/Layout/PageHeader";
|
8
|
-
import { CustomTable } from "./components/CustomTable/CustomTable";
|
9
|
-
import Pagination from "./components/CustomTable/Pagination";
|
7
|
+
import { PageHeader } from "./components/Layout/PageHeader.tsx";
|
8
|
+
import { CustomTable } from "./components/CustomTable/CustomTable.tsx";
|
9
|
+
import Pagination from "./components/CustomTable/Pagination.tsx";
|
10
10
|
|
11
11
|
const ITEMS_PER_PAGE = 14;
|
12
12
|
|