mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 04:18:54 +00:00
12 lines
210 B
TypeScript
12 lines
210 B
TypeScript
// eslint-disable-next-line @typescript-eslint/no-restricted-imports
|
|
import { Logger } from '../src';
|
|
|
|
const Page = () => {
|
|
return (
|
|
<div>
|
|
<h1>Track Example</h1>
|
|
<Logger />
|
|
</div>
|
|
);
|
|
};
|