import LayoutBase from './LayoutBase' import StickyBar from './components/StickyBar' import BlogPostListScroll from './components/BlogPostListScroll' import { useGlobal } from '@/lib/global' export const LayoutSearch = (props) => { const { locale } = useGlobal() const { posts } = props return (
{' '} {posts?.length} {locale.COMMON.RESULT_OF_SEARCH}
) }