import type { HTMLAttributes } from 'react';
interface IsotopesViewerProps extends HTMLAttributes {
value?: string;
}
function renderIsotope(value: string) {
return value.replaceAll(/(?\d+)/g, '$');
}
function IsotopesViewer({ value = '', ...othersProps }: IsotopesViewerProps) {
return (
);
}
export default IsotopesViewer;