import React from 'react' import { LmComponentRender } from '@LmComponentRender' import { LmStaticContainerProps } from './staticTypes' export function LmStaticContainer({ content }: LmStaticContainerProps): JSX.Element { return (
{(content.body || []).map((blok) => ( ))}
) }