mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
384c987389
* clean up routes and useless components * component clean up * removed redux from routes * rename file * moved useDeepEffect hook with others * removed redux, fleet, app_constants dirs; added types to utilities * style cleanup * typo fix * removed unused ts-ignore comments * removed redux packages!!! * formatting * fixed typing for simple search function * updated frontend readme
22 lines
504 B
TypeScript
22 lines
504 B
TypeScript
import React from "react";
|
|
|
|
// @ts-ignore
|
|
import fleetLogoText from "../../../assets/images/fleet-logo-text-white.svg";
|
|
|
|
interface IAuthenticationFormWrapperProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
const baseClass = "auth-form-wrapper";
|
|
|
|
const AuthenticationFormWrapper = ({
|
|
children,
|
|
}: IAuthenticationFormWrapperProps) => (
|
|
<div className={baseClass}>
|
|
<img alt="Fleet" src={fleetLogoText} className={`${baseClass}__logo`} />
|
|
{children}
|
|
</div>
|
|
);
|
|
|
|
export default AuthenticationFormWrapper;
|