Skip to content
Snippets Groups Projects
Commit f8180dc3 authored by Matt Kirby's avatar Matt Kirby
Browse files

Search page

parent c7feda8c
No related branches found
No related tags found
1 merge request!18Fe search and friends (sorry in advance)
import UserSearch from "@/components/form/UserSearch";
import NavBar from "@/components/navigation/NavBar";
import { useUser } from "@/hooks/useUser";
const Search = () => {
const user = useUser()
return (
<div>
<NavBar user={user} />
<div className="pt-20 p-3">
<UserSearch limit={100}/>
</div>
</div>
)
}
export default Search;
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment