bigbuffet-rw/app/soapbox/pages/chats-page.tsx
2022-09-22 14:03:12 -04:00

12 lines
258 B
TypeScript

import React from 'react';
/** Custom layout for chats on desktop. */
const ChatsPage: React.FC = ({ children }) => {
return (
<div className='md:col-span-12 lg:col-span-9 pb-16 sm:pb-0'>
{children}
</div>
);
};
export default ChatsPage;