import { VStack } from './core/Stacks'; import { Button } from './core/Button'; import React, { useState } from 'react'; import { Banner } from './core/Banner'; import { Icon } from './core/Icon'; interface Props { importData: () => Promise; } export function ImportDataDialog({ importData }: Props) { const [isLoading, setIsLoading] = useState(false); return (
  • Postman Collection v2+
  • Insomnia v4+
  • Curl commands
Paste any Curl command into URL bar
); }