diff --git a/src/app_modules/user_search/main/index.tsx b/src/app_modules/user_search/main/index.tsx index 900ee2c7..62f2471a 100644 --- a/src/app_modules/user_search/main/index.tsx +++ b/src/app_modules/user_search/main/index.tsx @@ -30,53 +30,55 @@ export default function UserSearch_MainView({ async function onSearch(name: string) { await UserSearch_searchByName(name).then((res) => setUser(res as any)); } - return ( - <> - - {/*
{JSON.stringify(user, null,2)}
r */} - - } - placeholder="Masukan nama pegguna" - onChange={(val) => onSearch(val.target.value)} - /> - {user.map((e) => ( - - - - {/* */} - - - - - {e.Profile.name} - - - +{e.nomor} - - - - -
- router.push(RouterProfile.katalog + `${e.Profile.id}`)} - > - - -
-
-
- -
- ))} -
-
- - ); + + return<> + // return ( + // <> + // + // {/*
{JSON.stringify(user, null,2)}
r */} + // + // } + // placeholder="Masukan nama pegguna" + // onChange={(val) => onSearch(val.target.value)} + // /> + // {user.map((e) => ( + // + // + // + // {/* */} + // + // + // + // + // {e.Profile.name} + // + // + // +{e.nomor} + // + // + // + // + //
+ // router.push(RouterProfile.katalog + `${e.Profile.id}`)} + // > + // + // + //
+ //
+ //
+ // + //
+ // ))} + //
+ //
+ // + // ); }