import React, { ReactNode } from 'react'; import GrowiLogo from '../Icons/GrowiLogo'; import { RawLayout } from './RawLayout'; import commonStyles from './NoLoginLayout.module.scss'; type Props = { title: string, className?: string, children?: ReactNode, } export const NoLoginLayout = ({ children, title, className, }: Props): JSX.Element => { const classNames: string[] = ['wrapper']; if (className != null) { classNames.push(className); } return (

GROWI

{children}
); };