mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
7 lines
182 B
TypeScript
7 lines
182 B
TypeScript
import { useMemo } from "react";
|
|
import { Logger } from "../initializations/logger";
|
|
|
|
export function useLogger(module: string) {
|
|
return useMemo(() => new Logger(module), []);
|
|
}
|