Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { QueryClient, QueryClientProvider } from "@tanstack/react-query";

import "./App.css";
import AppRouter from "./Router";
import { useEffect } from "react";

function App() {
const queryClient = new QueryClient({
Expand All @@ -16,6 +17,11 @@ function App() {
},
});

useEffect(() => {
alert("더이상 사용되지 않는 페이지입니다. 트위터 맛집 검색기 내에서 이용해주세요 :)");
window.location.href = "https://twitter-michelin.web.app/smallshop";
}, []);

return (
<>
<QueryClientProvider client={queryClient}>
Expand Down