mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-17 01:56:27 +08:00
88c8a408b5
feat: module resolve fix: logger repository fix: module resolve chore: add workflow for module resolve chore: update workflow env chore: update workflow install chore: update workflow env for npm token chore: test docker chore: update workflow env
10 lines
168 B
TypeScript
10 lines
168 B
TypeScript
import { useEffect } from 'react';
|
|
|
|
export const Logger = () => {
|
|
useEffect(() => {
|
|
console.log('@pathfinder/logger: Render Track');
|
|
}, []);
|
|
|
|
return null;
|
|
};
|