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