summaryrefslogtreecommitdiff
path: root/src/routes/products/products.tsx
blob: 6b242690e9a998689d9d0ccd680b2c41c26602cb (plain)
1
2
3
4
5
6
7
8
9
import SearchBar from "../../components/search_bar";

export default function Products() {
  return(
    <>
      <SearchBar path="/products"/>
    </>
  );
}