10 lines
170 B
JavaScript
10 lines
170 B
JavaScript
import React, { Component } from 'react';
|
|
|
|
function ServerPage() {
|
|
return (
|
|
<section><h1>Its a test thing</h1></section>
|
|
);
|
|
}
|
|
|
|
export default ServerPage;
|