create all components for new repo page
This commit is contained in:
parent
6ae13096c7
commit
8fae92267e
6 changed files with 36 additions and 9 deletions
|
@ -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>;
|
||||
}
|
||||
}
|
||||
|
10
static/js/directives/components/publicRepo/main.tsx
Normal file
10
static/js/directives/components/publicRepo/main.tsx
Normal 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;
|
||||
|
10
static/js/directives/components/publicRepo/sidebar.tsx
Normal file
10
static/js/directives/components/publicRepo/sidebar.tsx
Normal 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;
|
||||
|
Reference in a new issue