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 atom, when you set its value, triggers the custom write function we provide, | |
| * and can modify the atoms it relies on. It's basically two-way data binding. | |
| */ | |
| import { atom, useAtom } from 'jotai'; | |
| const priceAtom = atom(10); | |
| const priceModifier = atom( | |
| (get) => get(priceAtom) * 2, // this is called derived atom |
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
| find . -iname "*.txt" -exec bash -c 'mv "$0" "${0%\.txt}.md"' {} \; |
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
| <!-- generated from https://www.delightchat.io/whatsapp-chat-button-widget --> | |
| <script async src="https://d2mpatx37cqexb.cloudfront.net/delightchat-whatsapp-widget/embeds/embed.min.js"></script> | |
| <script> | |
| var wa_btnSetting = { | |
| btnColor: "#16BE45", | |
| ctaText: "", | |
| cornerRadius: 40, | |
| marginBottom: 20, | |
| marginLeft: 20, | |
| marginRight: 20, |
OlderNewer