Banda-Media/lunchMemo

View on GitHub
app/components/modules/main/Header/ActionsList/AuthActions.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import ListItemButton from './ListItemButton';
import { AuthActionsProps } from '@typing/props';

const AuthActions: React.FC<AuthActionsProps> = ({ logout }) => {
  return <ListItemButton click={logout} label="Log out" />;
};
export default AuthActions;