mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-07-27 09:13:23 +00:00
17 lines
497 B
TypeScript
17 lines
497 B
TypeScript
import React from "react";
|
|
import background from "./assets/authBackground.png";
|
|
import logo from './assets/MizuEntLogoFull.svg';
|
|
import "./style/AuthBasePage.sass";
|
|
|
|
|
|
export const AuthPageBase: React.FC = ({children}) => {
|
|
return <div className="authContainer" style={{background: `url(${background})`, backgroundSize: "cover"}}>
|
|
<div className="authHeader">
|
|
<img src={logo}/>
|
|
</div>
|
|
{children}
|
|
</div>;
|
|
};
|
|
|
|
export default AuthPageBase;
|