From b6d2a9da2c017a53eed46149dc9fa7831745daf7 Mon Sep 17 00:00:00 2001 From: Matthew Pinzino Date: Fri, 15 Nov 2024 08:16:12 -0500 Subject: [PATCH] Correct a typo and Clarify an incorrect import (#1138) --- runtime/tutorials/how_to_with_npm/react.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/tutorials/how_to_with_npm/react.md b/runtime/tutorials/how_to_with_npm/react.md index e1730744c..2a61698be 100644 --- a/runtime/tutorials/how_to_with_npm/react.md +++ b/runtime/tutorials/how_to_with_npm/react.md @@ -303,7 +303,7 @@ export default function Dinosaur() { ### Styling the list of dinosaurs -Since we are displaying the list of dinosaurs on the main page, let's do som +Since we are displaying the list of dinosaurs on the main page, let's do some basic formatting. Add the following to the bottom of `src/App.css` to display our list of dinosaurs in an orderly fashion: @@ -366,7 +366,7 @@ middleware: import { Application, Router } from "@oak/oak"; import { oakCors } from "@tajpouria/cors"; import data from "./data.json" with { type: "json" }; -import routeStaticFilesFrom from "./util/routeStaticFilesFrom.ts"; +import routeStaticFilesFrom from "./api/routeStaticFilesFrom.ts"; const router = new Router();