diff --git a/app/routes/data-transfer/start.tsx b/app/routes/data-transfer/start.tsx new file mode 100644 index 0000000..fdf8ea8 --- /dev/null +++ b/app/routes/data-transfer/start.tsx @@ -0,0 +1,36 @@ +import { + Button, + Container, + Heading, + HStack, + Radio, + RadioGroup, + Text, + Textarea, +} from "@chakra-ui/react"; +import { useState } from "react"; + +export default function () { + const [showCookieBox, setShowCookieBox] = useState(false); + return ( + + Let's get started + + Are you able to log in to the account you are transferring from? + + setShowCookieBox(JSON.parse(val))}> + + No + Yes + + +