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'; | |
| import UseStateDemo from './UseStateDemo'; | |
| import UseEffectDemo from './UseEffectDemo'; | |
| import './App.css'; | |
| export default () => ( | |
| <div style={{ margin: '20px auto', padding: '20px', width: 200 }}> | |
| <UseStateDemo /> | |
| <UseEffectDemo /> | |
| </div> |
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
| [ | |
| { | |
| "metadata": { | |
| "id": "d3836729-9cc1-42c1-b2af-d50071f57d29", | |
| "publisherId": "formulahendry.auto-close-tag", | |
| "publisherDisplayName": "formulahendry" | |
| }, | |
| "name": "auto-close-tag", | |
| "publisher": "formulahendry", | |
| "version": "0.5.7" |
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
| function useLazyAnalytics() { | |
| const [value, setValue] = useState(() => { | |
| return () => { | |
| const raceError = new Error('handler called before loaded'); | |
| bugsnagClient.notify(raceError); | |
| }; | |
| }); | |
| useEffect(() => { | |
| import('./lazyAnalytics').then((mod) => { |
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
| use std::fs::read_dir; | |
| use std::path::PathBuf; | |
| fn main() -> std::io::Result<()> { | |
| println!("Hello, world!"); | |
| let root_path = PathBuf::from("."); | |
| let coll = walk_files(root_path, None)?; |
OlderNewer