• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

mizchi / next-editor / 1409

pending completion
1409

Pull #349

circleci

web-flow
chore(deps): update babel monorepo
Pull Request #349: chore(deps): update babel monorepo

95 of 450 branches covered (21.11%)

Branch coverage included in aggregate %.

967 of 2058 relevant lines covered (46.99%)

1.93 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/ui/components/App.tsx
1
import React from "react"
×
2
import { Provider } from "react-redux"
×
3
import { PersistGate } from "redux-persist/integration/react"
×
4
import { configureStore } from "../store/configureStore"
×
5
import { CloneRepoModal } from "./organisms/CloneRepoModal"
×
6
import { CreateRepoModal } from "./organisms/CreateRepoModal"
×
7
import { Playground } from "./pages/Playground"
×
8
import { GlobalErrorBoundary } from "./utils/GlobalErrorBoundary"
×
9
import { GlobalKeyHandler } from "./utils/GlobalKeyHandler"
×
10
import { Initializer } from "./utils/Initializer"
×
11
import { MediaDetector } from "./utils/MediaDetector"
×
12
import { OnlineDetector } from "./utils/OnlineDetector"
×
13
import { StackRouter } from "./utils/StackRouter"
×
14
import { ThemeProvider } from "./utils/ThemeProvider"
×
15

16
// debug area
17
const ENTER_PLAYGROUND = false
×
18

19
export class App extends React.Component<{}> {
×
20
  render() {
21
    const { store, persistor } = configureStore()
×
22
    return (
×
23
      <GlobalErrorBoundary>
24
        <Provider store={store}>
25
          <PersistGate persistor={persistor}>
26
            <GlobalKeyHandler>
27
              <ThemeProvider>
28
                <Initializer>
29
                  {ENTER_PLAYGROUND ? <Playground /> : <StackRouter />}
×
30
                  <OnlineDetector />
31
                  <CreateRepoModal />
32
                  <CloneRepoModal />
33
                  <MediaDetector />
34
                </Initializer>
35
              </ThemeProvider>
36
            </GlobalKeyHandler>
37
          </PersistGate>
38
        </Provider>
39
      </GlobalErrorBoundary>
40
    )
41
  }
42
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc