11 lines
191 B
TypeScript
11 lines
191 B
TypeScript
|
import * as React from "react";
|
||
|
|
||
|
class repo_sidebar extends React.Component<{}, {}> {
|
||
|
render () {
|
||
|
return <div> The component for the sidebar</div>;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default repo_sidebar;
|
||
|
|