mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
17 lines
403 B
JavaScript
17 lines
403 B
JavaScript
import React from "react";
|
|
import {Helmet} from "react-helmet";
|
|
|
|
class Application extends React.Component {
|
|
render () {
|
|
return (
|
|
<div className="application">
|
|
<Helmet>
|
|
<title>My unsafe</title>
|
|
<script type="application/javascript">{document.location.hash}</script>
|
|
</Helmet>
|
|
</div>
|
|
);
|
|
}
|
|
};
|
|
|
|
export default Application |