📄️ Quick Start
Install the package
📄️ HTML Templates
The @microsoft/fast-element package offers a named export html which is a tag template literal. It can be used to create HTML snippets which will become your web components shadow DOM.
📄️ HTML Directives
FAST provides directives to aide in solving some common scenarios.
📄️ CSS Templates
The @microsoft/fast-element package offers a named export css which is a tag template literal. It can be used to create CSS snippets which will become your web components CSS. These styles are adoptedStylesheets and associated with the ShadowRoot, they therefore do not affect styling in the rest of the document. To share styles between a document and web components, we suggest using CSS properties.
📄️ FASTElement
The FASTElement class can be extended from for your custom component logic.