import React from 'react';
import './App.css'; // Optional: Use if you want to add styles
import Counter from './features/counter/counter'; // Import the counter component
function App() {
return (
<div>
<h1>My Redux Counter App</h1>
{/* Use the Counter component */}
</div>
);
}
export default App;