The answer from here worked for me to solve this exact warning: https://github.com/OnsenUI/react-onsenui/issues/107
You need to add the key property to both content and tab, like this:
{
content: <MyTab title="Settings" key={2} />,
tab: <Ons.Tab label="Settings" key={2} />
}
This solved the warning for me.