mirror of
https://github.com/facebook/react.git
synced 2026-02-23 20:23:02 +00:00
9 lines
214 B
JavaScript
9 lines
214 B
JavaScript
import * as React from 'react';
|
|
import portaledContent from '../portaledContent';
|
|
|
|
function SuspenseTab() {
|
|
return 'Under construction';
|
|
}
|
|
|
|
export default (portaledContent(SuspenseTab): React.ComponentType<{}>);
|