mirror of
https://github.com/AustinKelsay/plebdevs.git
synced 2025-05-23 10:22:03 +00:00
12 lines
214 B
JavaScript
12 lines
214 B
JavaScript
![]() |
import React from 'react';
|
||
|
import { useAutoLogin } from '@/hooks/useAutoLogin';
|
||
|
|
||
|
const Layout = ({ children }) => {
|
||
|
useAutoLogin();
|
||
|
console.log('Layout');
|
||
|
|
||
|
return <>{children}</>;
|
||
|
};
|
||
|
|
||
|
export default Layout;
|