EcoChargeFinder / src / vuejs / aboutPresenter.jsx
aboutPresenter.jsx
Raw
import AboutView from "../views/aboutView";
import TopbarView from "./topBarPresenter.jsx";
export default function About(props) {
  return (
    <div>
      <TopbarView model={props.model} />
      <AboutView />
    </div>
  );
}