Last active
January 15, 2023 22:36
-
-
Save UpperCod/1b90dcc0628da914ab8c1e077c4d3b56 to your computer and use it in GitHub Desktop.
Revisions
-
MatiasWorker revised this gist
Nov 4, 2021 . 2 changed files with 2 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,4 @@ import { c, html } from "atomico"; // 3.0kB function component({ name }) { return html`<host shadowDom>Hello, ${name}</host>`; This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,4 @@ import { Props, c, html } from "atomico"; // 3.0kB function component({ name }:Props<component.props>) { return html`<host shadowDom>Hello, ${name}</host>`; -
MatiasWorker revised this gist
Feb 3, 2021 . 4 changed files with 5 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ import { c } from "atomico"; // 2.5kB import html from "atomico/html"; // .5kB function component({ name }) { return html`<host shadowDom>Hello, ${name}</host>`; This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ import { c } from "atomico"; // 2.5kB function component({ name }) { return <host shadowDom>Hello, {name}</host>; This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ import { Props, c } from "atomico"; // 2.5kB import html from "atomico/html"; // .5kB function component({ name }:Props<component.props>) { return html`<host shadowDom>Hello, ${name}</host>`; This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,4 @@ import { Props, c } from "atomico"; // 2.5kB function component({ name }:Props<component.props>) { return <host shadowDom>Hello, {name}</host>; -
MatiasWorker revised this gist
Feb 3, 2021 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ import { c } from "atomico"; // 2.5kB import html from "atomico/html"; // .7kB function component({ name }) { return html`<host shadowDom>Hello, ${name}</host>`; -
MatiasWorker revised this gist
Feb 3, 2021 . 4 changed files with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes.File renamed without changes.File renamed without changes.File renamed without changes. -
MatiasWorker revised this gist
Feb 1, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,4 +9,4 @@ component.props = { name: String, }; customElements.define("my-component", c(component)); -
MatiasWorker revised this gist
Feb 1, 2021 . 2 changed files with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ import { Props, c } from "atomico"; import html from "atomico/html"; function component({ name }:Props<component.props>) { This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ import { Props, c } from "atomico"; import html from "atomico/html"; function component({ name }:Props<component.props>) { -
MatiasWorker revised this gist
Feb 1, 2021 . 2 changed files with 24 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ import { Props,c } from "atomico"; import html from "atomico/html"; function component({ name }:Props<component.props>) { return html`<host shadowDom>Hello, ${name}</host>`; } component.props = { name: String, }; customElements.define("my-component", c(component)); This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ import { Props,c } from "atomico"; import html from "atomico/html"; function component({ name }:Props<component.props>) { return <host shadowDom>Hello, {name}</host>; } component.props = { name: String, }; customElements.define("my-component", c(component)); -
MatiasWorker revised this gist
Feb 1, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,4 +9,4 @@ component.props = { name: String, }; customElements.define("my-component", c(component)); -
MatiasWorker revised this gist
Feb 1, 2021 . 2 changed files with 13 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ import { c } from "atomico"; import html from "atomico/html"; function component({ name }) { return html`<host shadowDom>Hello, ${name}</host>`; } component.props = { name: String, }; customElements.define("my-component", c(component)); This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -8,4 +8,4 @@ component.props = { name: String, }; customElements.define("my-component", c(component)); -
MatiasWorker renamed this gist
Feb 1, 2021 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
MatiasWorker created this gist
Feb 1, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ import { c } from "atomico"; function component({ name }) { return <host shadowDom>Hello, {name}</host>; } component.props = { name: String, }; customElements.define("my-component", c(component));