This repository has been archived on 2020-03-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
quay/static/js/directives/components/pages/repo-page/sidebar.tsx
2016-11-01 14:42:50 -04:00

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;