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
| <p class="isArrivedAndIsBeautifull" style="font-size: 2em;color: #333;text-align: center;">È arrivata... ed è bellissima!</p> |
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
| root = true | |
| [*] | |
| end_of_line = lf | |
| charset = utf-8 | |
| trim_trailing_whitespace = true | |
| insert_final_newline = true | |
| indent_style = space | |
| indent_size = 2 |
- container
- text ellipsis
- clearfix
- label
- breadcrumb
- tag
- link
- button
- sequence
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
| .= .- := =:= | |
| == != === !== =/= | |
| <<- <-- <- <-> -> --> ->> | |
| <=< <<= <== <=> => ==> =>> >=> | |
| >>= >>- >- -< -<< =<< | |
| <~~ <~ ~~~ ~~ ~> ~~> | |
| <<< << <= <> >= >> >>> | |
| <| <|> |> |
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
| import React from 'react' | |
| let cache = [] | |
| const isCached = src => cache.includes(src) | |
| export const useScript = src => { | |
| const [state, setState] = React.useState({ | |
| isLoaded: isCached(src), | |
| hasError: false, | |
| }) |
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
| export type Nully = null | undefined | |
| export type Falsy = false | 0 | '' | Nully |