Files
goTorrent/torrent-project/node_modules/material-ui/test-utils/unwrap.js.flow

6 lines
133 B
Plaintext

// @flow weak
export default function unwrap(component: Object) {
return component.Naked ? unwrap(component.Naked) : component;
}