Skip to content
Snippets Groups Projects

Resolve "Element or reaction notes are not displayed in the left panel."

6 files
+ 36
0
Compare changes
  • Side-by-side
  • Inline
Files
6
 
import { ModificationResidue } from '@/types/models';
 
 
type ModificationResidueItemProps = Pick<ModificationResidue, 'state' | 'name'>;
 
 
export const ModificationResidueItem = ({
 
state,
 
name,
 
}: ModificationResidueItemProps): JSX.Element => (
 
<li>
 
<span>
 
{state} {name && <span>at position {name}</span>}
 
</span>
 
</li>
 
);
Loading