Nathan.fooo 51041f6860
CI: Appflowy tauri ci (#1851)
* 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>
2023-02-13 19:24:16 +08:00

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>;
};