6 lines
173 B
Plaintext
6 lines
173 B
Plaintext
import ReactDOM from 'react-dom';
|
|
import Portal from './Portal';
|
|
import LegacyPortal from './LegacyPortal';
|
|
|
|
export default (ReactDOM.createPortal ? Portal : LegacyPortal);
|