美文网首页
GUIComponent---Visible

GUIComponent---Visible

作者: hanxianshe_9530 | 来源:发表于2019-10-29 20:40 被阅读0次
{telemetryModalVisible ? (
   <TelemetryModal
       onCancel={onTelemetryModalCancel}
       onOptIn={onTelemetryModalOptIn}
       onOptOut={onTelemetryModalOptOut}
       onRequestClose={onRequestCloseTelemetryModal}
   />
) : null}
{loading ? (
   <Loader />
) : null}
{isCreating ? (
   <Loader messageId="gui.loader.creating" />
) : null}
{isRendererSupported ? null : (
   <WebGlModal isRtl={isRtl} />
)}
{tipsLibraryVisible ? (
   <TipsLibrary />
) : null}
{cardsVisible ? (
   <Cards />
) : null}
{alertsVisible ? (
   <Alerts className={styles.alertsContainer} />
) : null}
{connectionModalVisible ? (
   <ConnectionModal
       vm={vm}
   />
) : null}
{costumeLibraryVisible ? (
   <CostumeLibrary
       vm={vm}
       onRequestClose={onRequestCloseCostumeLibrary}
   />
) : null}
{backdropLibraryVisible ? (
   <BackdropLibrary
       vm={vm}
       onRequestClose={onRequestCloseBackdropLibrary}
   />
) : null}

网友评论

      本文标题:GUIComponent---Visible

      本文链接:https://www.haomeiwen.com/subject/ehtnvctx.html