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

jcubic / 10xDevs / 18821921866

26 Oct 2025 06:20PM UTC coverage: 24.961% (+0.003%) from 24.958%
18821921866

push

github

jcubic
refactor NotesContext

1817 of 8869 branches covered (20.49%)

Branch coverage included in aggregate %.

4 of 5 new or added lines in 1 file covered. (80.0%)

1 existing line in 1 file now uncovered.

882 of 1944 relevant lines covered (45.37%)

1776.33 hits per line

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

50.0
/src/components/AppLayoutClient.tsx
1
'use client';
2

3
import styles from './notes/MainNotesLayout.module.css';
4
import Footer from './Footer';
5

6
interface AppLayoutClientProps {
7
  navigation?: React.ReactNode;
8
  sidebar?: React.ReactNode;
9
  content?: React.ReactNode;
10
  children?: React.ReactNode;
11
}
12

13
export default function AppLayoutClient({
4✔
14
  navigation,
15
  sidebar,
16
  content,
17
  children
18
}: AppLayoutClientProps) {
UNCOV
19
  return (
×
20
    <div className={styles.layout}>
21
      {navigation}
22
      <div className={styles.panels}>
23
        {sidebar}
24
        {content}
25
      </div>
26
      {children}
27
      <Footer />
28
    </div>
29
  );
30
}
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

© 2026 Coveralls, Inc