import React, { PropsWithChildren } from 'react'; import TextRoleNucleon from './nucleons/TextRoleNucleon'; export default function BodyListItemAtom({ children }: PropsWithChildren<{}>) { return ( {children} ); }