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 PassengerMachine = Machine({ | |
| id: '叫車服務(乘客端)', | |
| initial: '地圖畫面', | |
| states: { | |
| '地圖畫面': { | |
| on: { | |
| '確認上下車地點': '訂單資訊畫面(金額、付款方式、特殊需求)' | |
| } | |
| }, | |
| '訂單資訊畫面(金額、付款方式、特殊需求)': { |
OlderNewer