Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
p6te committed Nov 9, 2023
1 parent ece5d62 commit c4dd2f6
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 12 deletions.
2 changes: 0 additions & 2 deletions src/pages/login/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import "./login.scss";

const Login = () => {
return <div className="login">Login</div>;
};
Expand Down
2 changes: 0 additions & 2 deletions src/pages/login/login.scss

This file was deleted.

1 change: 0 additions & 1 deletion src/pages/product/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import Single from "../../components/single";
import "./product.scss";
import { singleProduct } from "../../data";

const Product = () => {
Expand Down
2 changes: 0 additions & 2 deletions src/pages/product/product.scss

This file was deleted.

1 change: 0 additions & 1 deletion src/pages/user/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import Single from "../../components/single";
import "./user.scss";
import { singleUser } from "../../data";

const User = () => {
Expand Down
2 changes: 0 additions & 2 deletions src/pages/user/user.scss

This file was deleted.

3 changes: 1 addition & 2 deletions src/pages/users/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { GridColDef } from "@mui/x-data-grid";

import "./Users.scss";
import "./users.scss";
import { useState } from "react";
import { userRows } from "../../data";
import DataTable from "../../components/dataTable";
Expand Down

0 comments on commit c4dd2f6

Please sign in to comment.