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/header.tsx
2016-11-01 14:28:27 -04:00

10 lines
186 B
TypeScript

import * as React from "react";
class repoHeader extends React.Component<{}, {}> {
render () {
return <div> The component for the header</div>;
}
}
export default repoHeader;