10 lines
194 B
TypeScript
10 lines
194 B
TypeScript
import { TextCustom, ViewWrapper } from "@/components";
|
|
|
|
export default function UserSearch() {
|
|
return (
|
|
<ViewWrapper>
|
|
<TextCustom>User Search</TextCustom>
|
|
</ViewWrapper>
|
|
);
|
|
}
|