-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbootcamp.php
35 lines (34 loc) · 1.17 KB
/
bootcamp.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
return [
'Prologue' => [
'children' => [
'Introduction' => '/bootcamp/introduction',
],
],
'Web' => [
'children' => [
'Installation' => '/bootcamp/installation',
'Creating Chirps' => '/bootcamp/creating-chirps',
'Listing Chirps' => '/bootcamp/listing-chirps',
'Editing Chirps' => '/bootcamp/editing-chirps',
'Deleting Chirps' => '/bootcamp/deleting-chirps',
'Hotwiring Everything' => '/bootcamp/hotwiring-everything',
'Broadcasting' => '/bootcamp/broadcasting',
],
],
'Native' => [
'children' => [
'Installation' => '/bootcamp/native-setup',
'Authentication' => '/bootcamp/native-auth',
'Our First Bridge Component' => '/bootcamp/native-bridge-component',
'Editing as a Modal' => '/bootcamp/native-editing-modal',
'Native Confirmation Dialog' => '/bootcamp/native-confirmation',
'Native Toasts' => '/bootcamp/native-toasts',
],
],
'Epilogue' => [
'children' => [
'Conclusion' => '/bootcamp/conclusion',
],
],
];