diff options
| author | Nicolas James <Eele1Ephe7uZahRie@tutanota.com> | 2025-02-21 15:12:56 +1100 |
|---|---|---|
| committer | Nicolas James <Eele1Ephe7uZahRie@tutanota.com> | 2025-02-21 15:12:56 +1100 |
| commit | ebabf3c6ea537d7ef53634748295cc9411ccdbaf (patch) | |
| tree | e5b14929db1669d41d9cfb52e76a8b54876d10ee /src/components | |
| parent | 2e7b4983ac56b2e146df6bc23f8835d945b55997 (diff) | |
Fix bad React import
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/not_found/NotFound.jsx | 1 | ||||
| -rw-r--r-- | src/components/site/Site.jsx | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/components/not_found/NotFound.jsx b/src/components/not_found/NotFound.jsx index 71ed075..cbc3ab3 100644 --- a/src/components/not_found/NotFound.jsx +++ b/src/components/not_found/NotFound.jsx @@ -1,6 +1,5 @@ import React from "react"; - export default function NotFound() { return ( <div>Not Found!</div> diff --git a/src/components/site/Site.jsx b/src/components/site/Site.jsx index d1c75db..34c890e 100644 --- a/src/components/site/Site.jsx +++ b/src/components/site/Site.jsx @@ -1,4 +1,4 @@ -import react from "react"; +import React from "react"; export default function Site() { return ( |
