TinyForest system front-end written with ReactJS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 lines
477 B

import React from 'react';
const Sysinfo = () => {
// TODO Pull system info etc.
return (
<div>
<div className="wrapper">
<h2 style={{padding:10}}>System Information</h2>
<div className="sys1">
<h5>Systeminfo</h5>
<h6>Temperature: Pull system temp</h6>
<h6>Kernel: Pull kernel info</h6>
</div>
</div>
</div>
);
};
export default Sysinfo;