guild_front/src/hoc/withLogout.js
2021-08-09 15:10:12 +03:00

9 lines
212 B
JavaScript

import React from 'react';
import { LogoutButton } from '../components/LogoutButton/LogoutButton';
export const WithLogout = (props) => {
return <>
<LogoutButton />
{props.children}
</>
}