Skip to content

Commit a101006

Browse files
committed
done with setuo workflow
1 parent 90c459e commit a101006

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/content/setup-mutation-workflow.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ mutation MAKE_A_BOOKING(
4949

5050
Lastly, lets add a route for the Booking page in the `router.js` file:
5151

52-
```
53-
import Index from "./pages/booking";
52+
```javascript
53+
import Index from "./pages/booking"
5454

5555
const routes = [
56-
{
56+
{
5757
path: "/booking/:id",
58-
component: Index
59-
}
58+
component: Index,
59+
},
6060
]
6161
```
6262

63-
That should be enough for now, Next up we will set up the component.
63+
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

Comments
 (0)