Skip to content

Commit 0521600

Browse files
committed
remove imports
1 parent 3c39f6c commit 0521600

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ node_modules
1111
dist
1212
dist-ssr
1313
*.local
14+
.env
1415

1516
# Editor directories and files
1617
.vscode/*

src/pages/Dashboard.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import React from 'react';
21
import { Link } from 'react-router-dom';
32
import { Button } from "../components/ui/button";
43
import { PlusCircle } from 'lucide-react';

src/pages/Home.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import React from 'react';
2-
import { SignedIn, SignedOut, SignIn } from "@clerk/clerk-react";
31
import { Link } from 'react-router-dom';
2+
import { SignedIn, SignedOut, SignIn } from "@clerk/clerk-react";
43

54
const Home = () => {
65
return (

tsconfig.app.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@
1515
"noEmit": true,
1616
"jsx": "react-jsx",
1717

18+
/* Path Aliases */
19+
"baseUrl": ".",
20+
"paths": {
21+
"@/*": ["./src/*"]
22+
},
23+
1824
/* Linting */
1925
"strict": true,
2026
"noUnusedLocals": true,

0 commit comments

Comments
 (0)