diff options
author | Vitaly Takmazov | 2019-04-08 11:43:31 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:54 +0300 |
commit | dc0fd660d0b5e2ed557dd7409c10f06a198bfe52 (patch) | |
tree | 326d64154f25c5630a82c94a94724530281726ea /vnext/src | |
parent | 38de2a3fa75b50973638417b203368570928e2c5 (diff) |
Cleanup
Diffstat (limited to 'vnext/src')
-rw-r--r-- | vnext/src/components/Post.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vnext/src/components/Post.js b/vnext/src/components/Post.js index 36c3d837..7958c36d 100644 --- a/vnext/src/components/Post.js +++ b/vnext/src/components/Post.js @@ -1,9 +1,9 @@ -import React, { memo, useRef, useState } from 'react'; +import React, { memo } from 'react'; import ReactRouterPropTypes from 'react-router-prop-types'; import { UserType } from './Types'; -import * as qs from 'qs'; +import qs from 'qs'; import MessageInput from './MessageInput'; |