13 lines
250 B
TypeScript
13 lines
250 B
TypeScript
import React from "react";
|
|
|
|
export function SectionContainer(
|
|
p: React.PropsWithChildren
|
|
): React.ReactElement {
|
|
return (
|
|
<div style={{ margin: "50px 15px" }}>
|
|
<div style={{ height: "20px" }}></div>
|
|
{p.children}
|
|
</div>
|
|
);
|
|
}
|