- complete onyx design template

- implement public sharable urls
- implement more actions
This commit is contained in:
Amruth Pillai
2020-07-11 20:42:16 +05:30
parent 0b5653fab5
commit 5ec1f21bd3
55 changed files with 1025 additions and 412 deletions

17
src/pages/r.js Normal file
View File

@ -0,0 +1,17 @@
import { Redirect, Router } from '@reach/router';
import React, { memo } from 'react';
import Wrapper from '../components/shared/Wrapper';
import ResumeViewer from './r/view';
import NotFound from './404';
const ResumeRouter = () => (
<Wrapper>
<Router>
<Redirect noThrow from="/r" to="/" exact />
<ResumeViewer path="r/:id" />
<NotFound default />
</Router>
</Wrapper>
);
export default memo(ResumeRouter);