import React, { useState } from "react"; import { ProgressIndicator, Header2, Button, IconArrow, Label, FileInput, TextArea, CenteredContainer, Spacer, TextAlignWrapper, GlobalStyle } from '@intended/intended-ui'; const JustPage = () => { const [secretInput, setSecretInput] = useState(""); const [fileInput, setFileInput] = useState(null); const [fileName, setFileName] = useState(""); const handleChange = (e: React.ChangeEvent) => { setSecretInput(e.target.value); }; const handleFile = (file: File) => { setFileInput(file); setFileName(file.name); }; return ( Create a secret