I'm trying to put google AdSense ads into my Angular Dart app. But if I paste it into the html of one of my components it doesn't show anything.
dashboard_component.html:
<head>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-7364276574790830",
enable_page_level_ads: true
});
</script>
</head>