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

mizchi / next-editor / 1448

28 Feb 2024 12:17PM UTC coverage: 42.344% (+0.6%) from 41.712%
1448

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/pages/Edit.tsx
1
import * as React from "react"
×
2
import { Root } from "../atoms/Root"
×
3
import { EditFooter } from "../organisms/EditFooter"
×
4
import { Editor } from "../organisms/Editor"
×
5
import { GlobalHeader } from "../organisms/GlobalHeader"
×
6
import { Grid, GridArea } from "../utils/Grid"
×
7

8
export function Edit() {
×
9
  return (
×
10
    <Root data-testid="edit">
11
      {/* prettier-ignore */}
12
      <Grid
13
        columns={["1fr"]}
14
        rows={[
15
          "32px",
16
          "1fr",
17
          "32px"
18
        ]}
19
        areas={[
20
          ["header"],
21
          ["content"],
22
          ["footer"]
23
        ]}
24
        width="100vw"
25
        height="100vh"
26
      >
27
        <GridArea
28
          name="header"
29
        >
30
          <GlobalHeader />
31
        </GridArea>
32
        <GridArea
33
          name="content"
34
        >
35
          <Editor />
36
        </GridArea>
37
        <GridArea
38
          name="footer"
39
        >
40
          <EditFooter />
41
        </GridArea>
42

43
      </Grid>
44
    </Root>
45
  )
46
}
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