9 lines
212 B
JavaScript
9 lines
212 B
JavaScript
import React from 'react';
|
|
import { LogoutButton } from '../components/LogoutButton/LogoutButton';
|
|
|
|
export const WithLogout = (props) => {
|
|
return <>
|
|
<LogoutButton />
|
|
{props.children}
|
|
</>
|
|
} |