mirror of
https://github.com/ditkrg/AuthorizationServerDemos.git
synced 2026-01-23 19:06:42 +00:00
15 lines
256 B
JavaScript
15 lines
256 B
JavaScript
import React from "react";
|
|
|
|
const Main = ({ Component, styles = {} }) => {
|
|
return (
|
|
<div
|
|
className="flex flex-col items-center justify-center h-4/5"
|
|
style={{ ...styles }}
|
|
>
|
|
<Component />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Main;
|