Skip to content

Commit

Permalink
switching from ./ to @/
Browse files Browse the repository at this point in the history
  • Loading branch information
BANANAPEEL202 committed Oct 9, 2024
1 parent c52765d commit 5243adf
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import "@mantine/core/styles.css";
import { MantineProvider } from "@mantine/core";
import { theme } from "./theme";
import { data } from "./data/sampledata";
import { theme } from "@/theme";
import { data } from "@/data/sampledata";
import { useState } from "react";
import Navbar from "./components/Navbar";
import SearchBar from "./components/SearchBar";
import "./css/App.css";
import DataTable from "./components/DataTable";
import PreviewCard from "./components/PreviewCard";
import Navbar from "@/components/Navbar";
import SearchBar from "@/components/SearchBar";
import "@/css/App.css";
import DataTable from "@/components/DataTable";
import PreviewCard from "@/components/PreviewCard";

export default function App() {
const [filteredData, setFilteredData] = useState<MCAPFileInformation[]>(data);
Expand Down

0 comments on commit 5243adf

Please sign in to comment.