mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-31 12:24:49 +00:00

* chore: add notification parser * chore: rename classes to models * refactor: add effects and reducers folder * chore: update eslint version * chore: run npx eslint --fix src * fix: ParserOptions.project error by ignore linting the .eslintrc.cjs * ci: add tauri lint * ci: disable ubuntu and windows tauri ci * ci: install --------- Co-authored-by: Annie <anqi.annie.wang@gmail.com>
9 lines
221 B
TypeScript
9 lines
221 B
TypeScript
import { useParams } from 'react-router-dom';
|
|
import { useEffect } from 'react';
|
|
|
|
export const DocumentPage = () => {
|
|
const params = useParams();
|
|
|
|
return <div className={'p-8'}>Document Page ID: {params.id}</div>;
|
|
};
|