// Copyright 2017-2026 @pezkuwi/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; interface Props { children?: React.ReactNode; className?: string; } function Bare ({ children, className = '' }: Props): React.ReactElement { return (
{children}
); } export default React.memo(Bare);