25
loading...
This website collects cookies to deliver better user experience
<my-awesome-app>
<my-awesome-header></my-awesome-header>
<my-awesome-content></my-awesome-content>
<my-awesome-footer></my-awesome-footer>
</my-awesome-app>
// IMPORT
import { Props, c, css } from "atomico";
// WEBCOMPONENT
function myComponent({ message }: Props<typeof myComponent.props>) {
return <host shadowDom>{message}</host>;
}
// WEBCOMPONENT PROPERTIES AND ATTRIBUTES
myComponent.props = {
message: String,
};
// WEBCOMPONENT APPEARANCE
myComponent.styles = css`
:host {
font-size: 30px;
}
`;
// CUSTOM ELEMENT
export const MyComponent = c(myComponent);
// DEFINITION OF THE WEBCOMPONENT AS A TAG
customElements.define("my-component", MyComponent);
import { MyComponent } from "./component";
function myAwesomeApp() {
return <host>
<MyComponent message="hello atomico!">
</host>;
}