// App — renders the selected minimal CV.

function App() {
  return <MinimalCV />;
}

ReactDOM.createRoot(document.getElementById('root')).render(<App />);
