I am genuinely lost with the errors I have been getting in my project. I have created index.ts files to export the needed components but it has not seemed to help. Below is my project structure as well as the import lines that are not working.
src
├── App.js
├── OptionBar
│ ├── OptionBar.tsx
│ ├── index.ts
│ └── optionBarStyles.css
├── SortingVisualizer
│ ├── SortingVisualizer.tsx
│ ├── index.ts
│ └── sortingVisualizerStyles.css
├── index.js
├── reportWebVitals.js
└── setupTests.js
import React from 'react'
import { SortingVisualizer } from './SortingVisualizer'; // fix
function App() {
// Render the component's UI
return (
<SortingVisualizer />
);
}
export default App;