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 countries = [ | |
| { name: 'Afghanistan', code: 'AF' }, | |
| { name: 'Åland Islands', code: 'AX' }, | |
| { name: 'Albania', code: 'AL' }, | |
| { name: 'American Samoa', code: 'AS' }, | |
| { name: 'AndorrA', code: 'AD' }, | |
| { name: 'Angola', code: 'AO' }, | |
| ]; | |
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 * as assert from 'assert'; | |
| type Direction = (x: number, y: number) => [number, number]; | |
| const directions: Direction[] = [ | |
| (x, y) => [x + 1, y + 1], | |
| (x, y) => [x - 1, y + 1], | |
| (x, y) => [x, y + 1], | |
| (x, y) => [x + 1, y], | |
| ]; |
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
| { | |
| "devtool": "cheap-module-source-map", | |
| "entry": { | |
| "manager": [ | |
| "/Users/tomesterez/projects/pbv4/node_modules/@storybook/react/dist/server/config/polyfills.js", | |
| "/Users/tomesterez/projects/pbv4/node_modules/@storybook/react/dist/server/addons.js", | |
| "/Users/tomesterez/projects/pbv4/node_modules/@storybook/react/dist/client/manager/index.js" | |
| ], | |
| "preview": [ | |
| "/Users/tomesterez/projects/pbv4/node_modules/@storybook/react/dist/server/config/polyfills.js", |