A Pen by Gustavo Santamaría on CodePen.
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 characters
const MENU_OPTIONS = [ | |
{ | |
label: 'Home', | |
icon: '<svg>...</svg>', | |
route: '/home', | |
}, | |
{ | |
label: 'Appointments', | |
icon: '<svg>...</svg>', | |
route: '/appointments', |
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 characters
public SessionController = { | |
join: async () => { | |
const instance = Store.instance; | |
instance.loaders = { | |
...instance.loaders, | |
join: true, | |
}; | |
const client = Client.get(); |
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 characters
<h1 {email-title}> | |
title | |
</h1> | |
<p {email-paragraph}> | |
paragraph | |
</p> | |
<p {email-inline-paragraph}> | |
inline paragraph |
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 characters
[ | |
{ | |
"name": "Afghanistan", | |
"code": "AF", | |
"image": "https://github.com/tavoohoh/assets/blob/master/countries/flags/af.svg", | |
"dialCode": "93", | |
"mask": "##-###-####" | |
}, | |
{ | |
"name": "Albania", |