Initial framework ready

This commit is contained in:
2018-12-08 08:10:37 +11:00
parent e014056ad4
commit ba465dcb17
14 changed files with 334 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import React from "react";
class Rules extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<div>
<p>Rules</p>
</div>
);
}
}
export default Rules;