Skip to content

Commit 2d28619

Browse files
committed
deploy
1 parent 2e14051 commit 2d28619

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/App.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import {
33
Routes,
44
Route
55
} from "react-router-dom";
6-
import Home from "./pages/Home";
76
import Doc from "./pages/Doc";
7+
import Home from "./pages/Home";
88

99
function App() {
1010
return (

src/pages/Home.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { useState } from 'react'
2-
import Error from "/src/components/Error/Error";
3-
import SearchInput from "/src/components/Search/SearchInput";
4-
import Layout from "/src/components/Layout/Layout";
2+
import Error from "../components/Error/Error";
3+
import SearchInput from "../components/Search/SearchInput";
4+
import Layout from "../components/Layout/Layout";
55

66
const Home = () => {
77
const [search, setSearch] = useState('')

src/pages/doc.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react'
2-
import DocCard from '/src/components/Docs/DocCard'
2+
import DocCard from '../components/Docs/DocCard'
33
const Doc = () => {
44
return (
55
<DocCard/>

0 commit comments

Comments
 (0)