update 1 file and delete 3 files

master
mahdi 2 years ago
parent 1a44bd934e
commit c36b92b35b
  1. 0
      src/components/FormFields/OutlineInput/index.js
  2. 0
      src/components/FormFields/OutlineSpan/index.js
  3. 0
      src/components/FormFields/OutlineTextarea/index.js
  4. 6
      src/components/FormFields/index.js

@ -1,10 +1,16 @@
import React, { useState } from "react";
import FormInput from "./FormInput";
import OutlineInput from "./OutlineInput";
import OutlineSpan from "./OutlineSpan";
import OutlineTextarea from "./OutlineTextarea";
function FormFields() {
const list = {
1: <FormInput />,
2: <OutlineInput />,
3: <OutlineSpan />,
4: <OutlineTextarea />,
};
const [type, setType] = useState(1);
return (

Loading…
Cancel
Save