This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/static/js/directives/components/pages/repo-page/sidebar.tsx

11 lines
189 B
TypeScript
Raw Normal View History

import * as React from "react";
2016-11-01 18:42:45 +00:00
class repoSidebar extends React.Component<{}, {}> {
render () {
return <div> The component for the sidebar</div>;
}
}
2016-11-01 18:42:45 +00:00
export default repoSidebar;