Skip to content

Commit

Permalink
fix: Move components
Browse files Browse the repository at this point in the history
  • Loading branch information
husamahmud committed Aug 9, 2024
1 parent 0f291fe commit 20ba923
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions popup/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Links from '@/ui/Links.tsx'
import Logo from '@/ui/Logo.tsx'
import LeetCode from '@/ui/LeetCode.tsx'
import Links from '@/components/Links.tsx'
import Logo from '@/components/Logo.tsx'
import LeetCode from '@/components/LeetCode.tsx'

export default function App() {
return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Welcome from '@/ui/Welcome.tsx'
import Welcome from '@/components/Welcome.tsx'

export default function LeetCode() {
return (
Expand Down
2 changes: 1 addition & 1 deletion popup/src/ui/Links.tsx → popup/src/components/Links.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
TooltipContent,
TooltipProvider,
TooltipTrigger,
} from '@/components/ui/tooltip'
} from '@/components/ui/tooltip.tsx'
import { LINKS } from '@/data/links.tsx'

export default function Links() {
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 20ba923

Please sign in to comment.