diff options
author | 2020-12-16 02:16:04 +0000 | |
---|---|---|
committer | 2020-12-16 02:16:04 +0000 | |
commit | 83dbb652e36c795eb8f3b9cb06916a36a910393f (patch) | |
tree | 7b45220ef399d9d8f82e945955756fb372af6583 /src/components | |
parent | Update all (diff) |
replace @emotion/core with @emotion/react
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, |