refactor(frontend): renamed `InputField.tsx` to `TextField.tsx`

pull/75/head
Samuel Rowe 3 years ago
parent beaef44426
commit b66818ec2f

@ -1,4 +1,4 @@
import TextField from "../../global/FormElements/InputField"; import TextField from "../../global/FormElements/TextField";
const General = () => { const General = () => {
return ( return (

@ -1,4 +1,4 @@
import TextField from "../../global/FormElements/InputField"; import TextField from "../../global/FormElements/TextField";
import { useCallback } from "react"; import { useCallback } from "react";
import { PlusIcon } from "@heroicons/react/outline"; import { PlusIcon } from "@heroicons/react/outline";
import { Button, styled } from "@mui/joy"; import { Button, styled } from "@mui/joy";

@ -1,4 +1,4 @@
import TextField from "../../global/FormElements/InputField"; import TextField from "../../global/FormElements/TextField";
const General = () => { const General = () => {
return ( return (

@ -2,7 +2,7 @@ import { FunctionComponent, ReactElement, useCallback } from "react";
import { styled } from "@mui/joy"; import { styled } from "@mui/joy";
import IconButton from "@mui/joy/IconButton"; import IconButton from "@mui/joy/IconButton";
import { MinusSmIcon } from "@heroicons/react/solid"; import { MinusSmIcon } from "@heroicons/react/solid";
import TextField from "./global/FormElements/InputField"; import TextField from "./global/FormElements/TextField";
export interface IFieldType { export interface IFieldType {
name: string; name: string;

Loading…
Cancel
Save