-
Aggarwal Himanshu authoredAggarwal Himanshu authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Container.js 217 B
import React from "react";
function Container(props) {
return (
<div className="container mx-auto pt-8 p-2 sm:p-8 md:py-16 md:pr-12 md:pl-4">
{props.children}
</div>
);
}
export default Container;