import React from 'react'; interface Props { upper?: boolean; } export const PeriodicTablePluginWrapper: React.FC = (props) => { return ( <>
{props.upper && props.children}
{!props.upper && props.children}
); };