Skip to content

Instantly share code, notes, and snippets.

@arunoda
Created December 28, 2015 10:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arunoda/8558920a9972fa41afa1 to your computer and use it in GitHub Desktop.
Save arunoda/8558920a9972fa41afa1 to your computer and use it in GitHub Desktop.
SysInfoComponent = ({sysInfo}) => (
<div>
<h1>System Information</h1>
<ul>
<li>Hostname: {sysInfo.hostname}</li>
<li>Uptime: {sysInfo.uptime} seconds</li>
<li>Memory: {sysInfo.memory} MB</li>
<li>Load Average: {sysInfo.loadavg.min1} </li>
</ul>
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment