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