mirror of
https://github.com/BlossomiShymae/clean-cuts.git
synced 2025-12-06 18:20:47 +01:00
9 lines
158 B
TypeScript
9 lines
158 B
TypeScript
import { Client } from "~/core/client";
|
|
|
|
const client = new Client();
|
|
|
|
export default function useClient(): { client: Client } {
|
|
return {
|
|
client
|
|
}
|
|
}; |