import { VStack } from './core/Stacks'; import { Button } from './core/Button'; import { useState } from 'react'; interface Props { importData: () => Promise; } export function ImportDataDialog({ importData }: Props) { const [isLoading, setIsLoading] = useState(false); return (

Supported Formats:

  • Postman Collection v2+
  • Insomnia v4+
  • Curl command(s)
); }