diff options
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/FormListing.tsx | 2 | ||||
-rw-r--r-- | src/components/HeaderBar/index.tsx | 2 | ||||
-rw-r--r-- | src/components/Loading.tsx | 2 | ||||
-rw-r--r-- | src/components/OAuth2Button.tsx | 2 | ||||
-rw-r--r-- | src/components/Tag.tsx | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/components/FormListing.tsx b/src/components/FormListing.tsx index c53cf67..f53efe2 100644 --- a/src/components/FormListing.tsx +++ b/src/components/FormListing.tsx @@ -1,5 +1,5 @@ /** @jsx jsx */ -import { css, jsx } from "@emotion/core"; +import { css, jsx } from "@emotion/react"; import { Link } from "react-router-dom"; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; diff --git a/src/components/HeaderBar/index.tsx b/src/components/HeaderBar/index.tsx index 8928a08..b789ddb 100644 --- a/src/components/HeaderBar/index.tsx +++ b/src/components/HeaderBar/index.tsx @@ -1,5 +1,5 @@ /** @jsx jsx */ -import { css, jsx } from "@emotion/core"; +import { css, jsx } from "@emotion/react"; import Header1 from "./header_1.svg"; import Header2 from "./header_2.svg"; diff --git a/src/components/Loading.tsx b/src/components/Loading.tsx index 48dcdbc..2758225 100644 --- a/src/components/Loading.tsx +++ b/src/components/Loading.tsx @@ -1,5 +1,5 @@ /** @jsx jsx */ -import { jsx } from "@emotion/core"; +import { jsx } from "@emotion/react"; import { HashLoader } from "react-spinners"; diff --git a/src/components/OAuth2Button.tsx b/src/components/OAuth2Button.tsx index d67b1ab..c364369 100644 --- a/src/components/OAuth2Button.tsx +++ b/src/components/OAuth2Button.tsx @@ -1,5 +1,5 @@ /** @jsx jsx */ -import { css, jsx } from "@emotion/core"; +import { css, jsx } from "@emotion/react"; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faDiscord } from "@fortawesome/free-brands-svg-icons"; diff --git a/src/components/Tag.tsx b/src/components/Tag.tsx index 9c96d94..0c55348 100644 --- a/src/components/Tag.tsx +++ b/src/components/Tag.tsx @@ -1,5 +1,5 @@ /** @jsx jsx */ -import { css, jsx } from "@emotion/core"; +import { css, jsx } from "@emotion/react"; interface TagProps { text: string, |