fix: add missing React imports
This commit is contained in:
parent
e1347e8313
commit
20cc481ca4
5 changed files with 5 additions and 4 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
import { ReactNode } from "react"
|
import React, { ReactNode } from "react"
|
||||||
import { Box, useTheme } from "@mui/material"
|
import { Box, useTheme } from "@mui/material"
|
||||||
|
|
||||||
export type FooterProps = {
|
export type FooterProps = {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
|
import React, { ReactNode, useMemo } from "react"
|
||||||
import { AppBar, Box, Button, Container, createTheme, CssBaseline, Link, ThemeProvider, Toolbar, Typography, useMediaQuery, useTheme } from "@mui/material"
|
import { AppBar, Box, Button, Container, createTheme, CssBaseline, Link, ThemeProvider, Toolbar, Typography, useMediaQuery, useTheme } from "@mui/material"
|
||||||
import CodeIcon from "@mui/icons-material/Code"
|
import CodeIcon from "@mui/icons-material/Code"
|
||||||
import { ReactNode, useMemo } from "react"
|
|
||||||
import { Link as GatsbyLink } from "gatsby"
|
import { Link as GatsbyLink } from "gatsby"
|
||||||
import { Footer } from "../atoms/Footer"
|
import { Footer } from "../atoms/Footer"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import * as React from "react"
|
import React from "react"
|
||||||
import { Link } from "gatsby"
|
import { Link } from "gatsby"
|
||||||
|
|
||||||
// styles
|
// styles
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { ReactNode } from "react"
|
import React, { ReactNode } from "react"
|
||||||
import { GatsbyLinkProps, graphql, Link, PageProps } from "gatsby"
|
import { GatsbyLinkProps, graphql, Link, PageProps } from "gatsby"
|
||||||
import Layout from "../../components/organisms/Layout"
|
import Layout from "../../components/organisms/Layout"
|
||||||
import { Card, CardContent, CardMedia, Grid, Typography } from "@mui/material"
|
import { Card, CardContent, CardMedia, Grid, Typography } from "@mui/material"
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
import React from "react"
|
||||||
import styled from "@emotion/styled"
|
import styled from "@emotion/styled"
|
||||||
import { Box, Card as Card_, CardContent, Grid, Typography } from "@mui/material"
|
import { Box, Card as Card_, CardContent, Grid, Typography } from "@mui/material"
|
||||||
import {
|
import {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue