We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90c459e commit a101006Copy full SHA for a101006
src/content/setup-mutation-workflow.md
@@ -49,15 +49,15 @@ mutation MAKE_A_BOOKING(
49
50
Lastly, lets add a route for the Booking page in the `router.js` file:
51
52
-```
53
-import Index from "./pages/booking";
+```javascript
+import Index from "./pages/booking"
54
55
const routes = [
56
-{
+ {
57
path: "/booking/:id",
58
- component: Index
59
- }
+ component: Index,
+ },
60
]
61
```
62
63
-That should be enough for now, Next up we will set up the component.
+That should be enough for now, Next up we will set up the component to handle various tabs that will facilitate being able to make a booking.
0 commit comments