| 12345678910111213141516171819 |
- import React, { type JSX, type ReactNode } from 'react';
- import { BasicLayout } from './BasicLayout';
- import commonStyles from './SearchResultLayout.module.scss';
- type Props = {
- children?: ReactNode;
- };
- const SearchResultLayout = ({ children }: Props): JSX.Element => {
- return (
- <BasicLayout className={`on-search ${commonStyles['on-search']}`}>
- {children}
- </BasicLayout>
- );
- };
- export default SearchResultLayout;
|