In index.html
<script type="text/javascript">
function test(){
alert('Function from index.html');
}
</script>
In your component
componentWillMount() {
window.test();
}
2022 Typescript edit:
Create a file global.d.ts like so (doc):
interface Window {
test: () => void;
}
✔