import type { FC } from 'react';
import React from 'react';

const PageRow: FC<{ children?: React.ReactNode }> = ({ children }) => (
    <div className="PageRow">{children}</div>
);

export default PageRow;
