mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
10 lines
274 B
TypeScript
10 lines
274 B
TypeScript
import React from 'react';
|
|
|
|
export type PublicProfileSettingsLayout = {
|
|
children: React.ReactNode;
|
|
};
|
|
|
|
export default function PublicProfileSettingsLayout({ children }: PublicProfileSettingsLayout) {
|
|
return <div className="col-span-12 md:col-span-9">{children}</div>;
|
|
}
|