aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2020-12-16 02:21:18 +0000
committerGravatar GitHub <[email protected]>2020-12-16 02:21:18 +0000
commitec617e4e19cc82dde84015037d60e25acce089f8 (patch)
tree7b45220ef399d9d8f82e945955756fb372af6583 /src/pages
parentMerge pull request #31 from python-discord/renovate/configure (diff)
parentreplace @emotion/core with @emotion/react (diff)
Merge pull request #32 from python-discord/renovate/all
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/CallbackPage.tsx2
-rw-r--r--src/pages/FormPage.tsx2
-rw-r--r--src/pages/LandingPage.tsx2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/pages/CallbackPage.tsx b/src/pages/CallbackPage.tsx
index d085d28..691a3e4 100644
--- a/src/pages/CallbackPage.tsx
+++ b/src/pages/CallbackPage.tsx
@@ -1,5 +1,5 @@
/** @jsx jsx */
-import { jsx } from "@emotion/core";
+import { jsx } from "@emotion/react";
import { useState } from "react";
export default function CallbackPage() {
diff --git a/src/pages/FormPage.tsx b/src/pages/FormPage.tsx
index ad746c7..97ff24d 100644
--- a/src/pages/FormPage.tsx
+++ b/src/pages/FormPage.tsx
@@ -1,5 +1,5 @@
/** @jsx jsx */
-import { jsx } from "@emotion/core";
+import { jsx } from "@emotion/react";
import { Link } from "react-router-dom";
import { useParams } from "react-router";
diff --git a/src/pages/LandingPage.tsx b/src/pages/LandingPage.tsx
index 127f166..e50d76f 100644
--- a/src/pages/LandingPage.tsx
+++ b/src/pages/LandingPage.tsx
@@ -1,5 +1,5 @@
/** @jsx jsx */
-import { css, jsx } from "@emotion/core";
+import { css, jsx } from "@emotion/react";
import { useEffect, useState } from "react";
import HeaderBar from "../components/HeaderBar";