blob: 5022913148a2de4337c8f67b47d6bcb8cb93e076 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import React from 'react';
import './index.scss';
class Home extends React.Component{
render(){
return (
<div id="page-wrapper" className="jumbotron">
<h1>PostgreSQL Performance Farm</h1>
<p>
The PostgreSQL Performance Farm project is a community project to collect performance data from tests, as code changes are made to PostgreSQL. Test results come as JSON or flat files, and the server-side interface is deployed using the Django framework.
</p>
<p>
This website enables registered users to upload, browse and download test results for all machines.
</p>
{/*<button className="btn btn-warning">test</button>*/}
</div>
)
}
}
export default Home;
|