create all components for new repo page

This commit is contained in:
Ian Minoso 2016-10-28 18:39:34 -04:00
parent 6ae13096c7
commit 8fae92267e
6 changed files with 36 additions and 9 deletions

View file

@ -2,7 +2,7 @@ import * as React from "react";
class repoHeader extends React.Component<{}, {}> {
render () {
return <p> The component for the header</p>;
return <div> The component for the header</div>;
}
}

View file

@ -0,0 +1,10 @@
import * as React from "react";
class main extends React.Component<{}, {}> {
render () {
return <div> The component for the main content</div>;
}
}
export default main;

View file

@ -0,0 +1,10 @@
import * as React from "react";
class repo_sidebar extends React.Component<{}, {}> {
render () {
return <div> The component for the sidebar</div>;
}
}
export default repo_sidebar;