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 documentUploadSheetStates = { | |
initial: 'idle', | |
states: { | |
idle: { | |
on: { | |
DELETE_ALL: 'idle', | |
FOCUS_INPUT: 'typing', | |
}, | |
}, |
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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
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
$break-small: 600px; | |
$break-large: 900px; | |
$break-xlarge: 1400px; | |
.restaurant-wrapper { | |
display: grid; | |
width: auto; | |
grid-template-areas: | |
"gutter desc pic gutter2" | |
"gutter contact resv gutter2" |