9 lines
217 B
TypeScript
9 lines
217 B
TypeScript
import React, { ReactNode } from 'react';
|
|
|
|
/**
|
|
* @deprecated Forum board context now lives in ForumAwareSpaceLayout.
|
|
*/
|
|
export function ForumSpaceLayout({ children }: { children: ReactNode }) {
|
|
return children;
|
|
}
|