mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-16 09:36:17 +08:00
10 lines
164 B
TypeScript
10 lines
164 B
TypeScript
import { useEffect } from 'react';
|
|
|
|
export const Logger = () => {
|
|
useEffect(() => {
|
|
console.log('@affine/logger: Render Track');
|
|
}, []);
|
|
|
|
return null;
|
|
};
|