search.tsx 202 Bytes
Newer Older
Kim, MinGyu's avatar
Kim, MinGyu committed
1
2
3
4
5
6
7
8
9
10
11
12
import React from "react";
import { useLocation } from "react-router-dom";

export default function Search() {
  const a = useLocation().state;

  return (
    <div>
      <div></div>
    </div>
  );
}