resources/todomvc/architecture-examples/react-redux/src/app.jsx (11 lines of code) (raw):
import Header from "./containers/header-container";
import Main from "./containers/main-container";
import "./styles/app.css";
export default function App() {
return (
<>
<Header />
<Main />
</>
);
}