diff options
| author | jackyzha0 <[email protected]> | 2021-03-06 16:32:09 -0800 |
|---|---|---|
| committer | jackyzha0 <[email protected]> | 2021-03-06 16:32:09 -0800 |
| commit | 75e8bdd2d4cdaefe28ed40a7735c993f98d15754 (patch) | |
| tree | 1b84a2222a11332075dc5de4405cd9d9e86193a5 /frontend/src/components/Inputs/Text.js | |
| parent | paste modal fixes (diff) | |
| download | ctrl-v-75e8bdd2d4cdaefe28ed40a7735c993f98d15754.tar.xz ctrl-v-75e8bdd2d4cdaefe28ed40a7735c993f98d15754.zip | |
refactor form -> common
Diffstat (limited to 'frontend/src/components/Inputs/Text.js')
| -rw-r--r-- | frontend/src/components/Inputs/Text.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/Inputs/Text.js b/frontend/src/components/Inputs/Text.js index 514ab78..600e653 100644 --- a/frontend/src/components/Inputs/Text.js +++ b/frontend/src/components/Inputs/Text.js @@ -1,7 +1,7 @@ import CharLimit from "../decorators/CharLimit"; import React from "react"; import {Labelled} from "../decorators/Labelled"; -import {Input} from "../Form/Input"; +import {Input} from "../Common/Input"; export const Text = React.forwardRef(({label, id, readOnly, onChange, value, maxLength, autoFocus}, ref) => { return ( |