diff options
author | Vitaly Takmazov | 2019-07-26 13:22:00 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:55 +0300 |
commit | f707d3d524d8d16e2bb780764f029d85fc57ecc0 (patch) | |
tree | 1580074a665bd16c9744b5749c2a777700c5ae73 /vnext/src/ui/Post.js | |
parent | 6016b0888e77497e15384f1cd024eb42672129a4 (diff) |
prop-types -> jsdoc
Diffstat (limited to 'vnext/src/ui/Post.js')
-rw-r--r-- | vnext/src/ui/Post.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/vnext/src/ui/Post.js b/vnext/src/ui/Post.js index 662f9f78..99189632 100644 --- a/vnext/src/ui/Post.js +++ b/vnext/src/ui/Post.js @@ -1,8 +1,5 @@ import React, { useState } from 'react'; -import ReactRouterPropTypes from 'react-router-prop-types'; -import { UserType } from './Types'; - import qs from 'qs'; import Button from './Button'; @@ -49,9 +46,10 @@ export default function Post({ location, visitor, history }) { </div> ); } - +/* Post.propTypes = { location: ReactRouterPropTypes.location, history: ReactRouterPropTypes.history.isRequired, visitor: UserType }; +*/
\ No newline at end of file |