Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jkarenzi committed Jun 20, 2024
1 parent 7804e4f commit ba27252
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import {
Route,
RouterProvider,
} from 'react-router-dom';
import Home from '@/pages/Home';
import Shop from '@/pages/Shop';
import About from '@/pages/About';
import Contact from '@/pages/Contact';
import Home from './pages/test2';
import Shop from './pages/test1';
import About from './pages/test';
import Contact from './pages/test3';

function App() {
const router = createBrowserRouter(
Expand Down
2 changes: 1 addition & 1 deletion src/__test__/navbar.test.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { render, screen, fireEvent } from '@testing-library/react';
import { MemoryRouter } from 'react-router-dom';
import { describe, it, expect } from 'vitest';
import Navbar from '@/components/Navbar';
import Navbar from '@/components/test4';

describe('Navbar Component', () => {
it('renders Navbar component', () => {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/pages/about.tsx → src/pages/test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Navbar from '@/components/Navbar';
import Navbar from '@/components/test4';

function About() {
return <Navbar />;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/shop.tsx → src/pages/test1.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Navbar from '@/components/Navbar';
import Navbar from '@/components/test4';

function Shop() {
return <Navbar />;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/home.tsx → src/pages/test2.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Navbar from '@/components/Navbar';
import Navbar from '@/components/test4';

function Home() {
return <Navbar />;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/contact.tsx → src/pages/test3.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Navbar from '@/components/Navbar';
import Navbar from '@/components/test4';

function Contact() {
return <Navbar />;
Expand Down

0 comments on commit ba27252

Please sign in to comment.