diff --git a/src/App.css b/src/App.css deleted file mode 100644 index e69de29..0000000 diff --git a/src/App.tsx b/src/App.tsx deleted file mode 100644 index cba6f33..0000000 --- a/src/App.tsx +++ /dev/null @@ -1,95 +0,0 @@ -import React, { useState } from "react"; - -import { ProgressIndicator } from "./stories/ProgressIndicator"; - -import { Header1 } from "./stories/Header1"; -import { Header2 } from "./stories/Header2"; - -import { Button } from "./stories/Button"; -import { IconArrow } from "./stories/IconArrow"; -import { InputButtonWithIcon } from "./stories/InputButtonWithIcon"; - -import { Label } from "./stories/Label"; -import { Input } from "./stories/Input"; -import { AutoResizingTextArea } from "./stories/AutoResizingTextArea"; -import { Select } from "./stories/Select"; - -import { CenteredContainer } from "./stories/utilities/CenteredContainer"; -import { SpaceBetweenContainer } from "./stories/utilities/SpaceBetweenContainer"; -import { Spacer } from "./stories/utilities/Spacer"; -import { TextAlignWrapper } from "./stories/utilities/TextAlignWrapper"; - -function App() { - const [input1, setInput1] = useState(""); - const [input2, setInput2] = useState(""); - const [select, setSelect] = useState("github"); - - const handleInputChange1 = (e: React.ChangeEvent) => { - setInput1(e.target.value); - }; - - const handleInputChange2 = (e: React.ChangeEvent) => { - setInput2(e.target.value); - }; - - const handleSelectChange = (e: React.ChangeEvent) => { - setSelect(e.target.value); - }; - - return ( - - - - {/* Securely Share Your Secrets */} - - Tell someone - - - - - - - {}} - /> - -