mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-06 02:26:49 +00:00
12 lines
221 B
JavaScript
12 lines
221 B
JavaScript
import React from "react";
|
|
|
|
const PageLayout = ({ title, children }) => {
|
|
return (
|
|
<div className="container">
|
|
<h1 className="logo">{title}</h1>
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default PageLayout;
|