@purtuga/interactions
Version:
Re-usable UI interactions.
18 lines (15 loc) • 493 B
JavaScript
import {showcase, registerElements} from "@purtuga/project-showcase";
import {VERSION} from "../src/index.js";
import "./resizable-showcase.js";
//========================================================
registerElements();
showcase("About", function ($content) {
$content.innerHTML = `
<h2>@purtuga/interactions ${ VERSION }</h2>
<p>Re-usable UI interactions.</p>
<p>
<strong>License:</strong> MIT<br>
<strong>Author:</strong> Paul Tavares <support@purtuga.com><br>
</p>
`;
});