import React from 'react'; import { faker } from '@faker-js/faker/locale/fr'; import { Container, Row, Table, Col } from './../../../components'; import { HeaderMain } from "../../components/HeaderMain"; import { CardSystem } from "./components/CardSystem" import { TrSystem } from "./components/trSystem" const TrColors = [ { fill: "primary-02", stroke: "primary" }, { fill: "purple-02", stroke: "purple" }, { fill: "success-02", stroke: "success" }, { fill: "yellow-02", stroke: "yellow" } ] const System = () => (
Processes

{ faker.lorem.paragraphs() }

Name Memory CPU Traffic Disk I/O
); export default System;