From bab69892efedb37a13286698c067bec482555452 Mon Sep 17 00:00:00 2001 From: Paul Pan Date: Tue, 23 Jan 2024 14:36:26 +0800 Subject: [PATCH] chore: move react.svg into pages --- src/pages/home.tsx | 2 +- {public => src/pages}/react.svg | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {public => src/pages}/react.svg (100%) diff --git a/src/pages/home.tsx b/src/pages/home.tsx index 89e4afd..55e111f 100644 --- a/src/pages/home.tsx +++ b/src/pages/home.tsx @@ -1,4 +1,4 @@ -import logo from "../../public/react.svg"; +import logo from "./react.svg"; import "./home.css"; export default function HomePage() { diff --git a/public/react.svg b/src/pages/react.svg similarity index 100% rename from public/react.svg rename to src/pages/react.svg