import { useState } from 'react'; import { Content } from './Content'; import { Form } from './Form'; export default function Dashboard() { const [loading, setLoading] = useState(false); const [error, setError] = useState(); const [parsedText, setParsedText] = useState(''); return (

This is a tool to extract the text from a PDF file

); }