All files / src/pages/Debug Debug.jsx

100% Statements 42/42
100% Branches 1/1
100% Functions 1/1
100% Lines 42/42

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 431x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 1x 1x  
import React, { useState, useEffect } from "react";
import "./Debug.css";
import Header from "../../components/Header/Header";
import DebugHeader from "../../components/DebugHeader/DebugHeader";
import Functions from "../../components/Functions/Functions";
import MainScreen from "../../components/MainScreen/MainScreen";
import Stack from "../../components/Stack/Stack";
import TerminalComp from "../../components/Terminal/TerminalComp";
import GdbComponents from "../../components/GdbComponents/GdbComponents";
import Breakpoint from "../../components/Breakpoint/Breakpoint";
import StackBottom from "../../components/StackBottom/StackBottom";
import FunctionsBottom from "../../components/FunctionsBottom/FunctionsBottom";
 
const Debug = () => {
  return (
    <div>
      <DebugHeader />
      <div className="container">
        <div className="left-part">
          <Functions />
          <FunctionsBottom />
        </div>
        <div className="middle-component">
          <div className="upper-part">
            <MainScreen />
            <TerminalComp />
          </div>
          <div className="lower-part">
            <GdbComponents />
            <Breakpoint />
          </div>
        </div>
        <div className="right-part">
          <Stack />
          <StackBottom />
        </div>
      </div>
    </div>
  );
};
 
export default Debug;