@nocodeapi/embed-instagram-feed
Version:
Webcomponent embed-instagram-feed following open-wc recommendations
32 lines (28 loc) • 677 B
HTML
<html lang="en-GB">
<head>
<meta charset="utf-8" />
<style>
body {
background: #fafafa;
}
</style>
</head>
<body>
<div id="demo"></div>
<script type="module">
import { html, render } from "lit-html";
import "../embed-instagram-feed.js";
const title = "Instagram Feed!";
const url = "https://v1.nocodeapi.com/fyz/instagram/csTbBAdESEhfcCVN";
render(
html`
<embed-instagram-feed .title=${title} .url=${url}>
some more light-dom
</embed-instagram-feed>
`,
document.querySelector("#demo")
);
</script>
</body>
</html>