append .js to imports

This commit is contained in:
Avraham Sakal
2024-11-10 09:08:34 -05:00
parent 9e738b4e43
commit 921a8a1354
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
import { Container } from "@mui/material";
import { SearchHeader } from "./SearchHeader/SearchHeader";
import { SearchResults } from "./SearchResults/SearchResults";
import { ChosenArticle } from "./ChosenArticle/ChosenArticle";
import { SearchHeader } from "./SearchHeader/SearchHeader.js";
import { SearchResults } from "./SearchResults/SearchResults.js";
import { ChosenArticle } from "./ChosenArticle/ChosenArticle.js";
export function Blog() {
return (
+2 -2
View File
@@ -1,6 +1,6 @@
import Stack from "@mui/material/Stack";
import { SearchRow } from "./SearchRow/SearchRow";
import { TagCloud } from "./TagCloud/TagCloud";
import { SearchRow } from "./SearchRow/SearchRow.js";
import { TagCloud } from "./TagCloud/TagCloud.js";
export function SearchHeader() {
return (