diff options
| author | jackyzha0 <[email protected]> | 2021-03-06 09:44:00 -0800 |
|---|---|---|
| committer | jackyzha0 <[email protected]> | 2021-03-06 09:44:00 -0800 |
| commit | cf59188dff4526a358d0386f8113f542e24fffc2 (patch) | |
| tree | 79eff89e90909c2391b0fa6eb7e81695d7c88413 /frontend/src/components/Inputs/Code.js | |
| parent | button styling (diff) | |
| download | ctrl-v-cf59188dff4526a358d0386f8113f542e24fffc2.tar.xz ctrl-v-cf59188dff4526a358d0386f8113f542e24fffc2.zip | |
add more css mixins
Diffstat (limited to 'frontend/src/components/Inputs/Code.js')
| -rw-r--r-- | frontend/src/components/Inputs/Code.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/Inputs/Code.js b/frontend/src/components/Inputs/Code.js index 0fd6240..67b3f76 100644 --- a/frontend/src/components/Inputs/Code.js +++ b/frontend/src/components/Inputs/Code.js @@ -1,7 +1,7 @@ import React, {useEffect, useRef} from "react"; import * as indentation from "indent-textarea"; import CharLimit from "../decorators/CharLimit"; -import {Labelled} from "./shared"; +import {Labelled} from "../decorators/Labelled"; export const Code = ({content, ...props}) => { const textInput = useRef(null); |