6 lines
152 B
TypeScript
6 lines
152 B
TypeScript
|
|
import { getUserInformation } from "../services/actions";
|
||
|
|
|
||
|
|
|
||
|
|
export async function fetchUserData(id: string) {
|
||
|
|
return await getUserInformation(id);
|
||
|
|
}
|