Skip to content

Commit f6dea05

Browse files
committed
fix: React import error
Signed-off-by: Alok Dangre <[email protected]> Signed-off-by: Alok Dangre <[email protected]>
1 parent 39fb4d0 commit f6dea05

File tree

14 files changed

+14
-0
lines changed

14 files changed

+14
-0
lines changed

site/src/pages/404.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import React from 'react';
12
import { Link } from 'gatsby';
23

34
const pageStyles = {

site/src/pages/identity/Content.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import React from 'react';
12
const Content = (props) => {
23
return (
34
<div className="w-[844px] pt-8 text-gray-700 text-sm font-normal font-openSans leading-loose">

site/src/pages/identity/Heading.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import React from 'react';
12
const Heading = (props) => {
23
return (
34
<div className="self-stretch text-gray-950 text-[52px] font-bold font-qanelas leading-[64px]">

site/src/pages/identity/Navigation.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import React from 'react';
12
import { Link } from 'react-router-dom';
23

34
const Navigation = (props) => {

site/src/pages/identity/Next.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import React from 'react';
12
import { Link } from 'react-router-dom';
23
import nextIcon from '../../assets/images/Chevron-light.svg';
34

site/src/pages/identity/Previous.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import React from 'react';
12
import { Link } from 'react-router-dom';
23
import PrevIcon from '../../assets/images/Chevron-light.svg';
34

site/src/pages/identity/Sidebar.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import React from 'react';
12
const Sidebar = (props) => {
23
return (
34
<div className="float-right w-[11.25rem] h-[3.75rem] px-4 py-6 bg-slate-200 bg-opacity-10 rounded-lg backdrop-blur-lg flex-col justify-start items-start gap-4 inline-flex">

site/src/pages/identity/SubContent.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import React from 'react';
12
const SubContent = (props) => {
23
return (
34
<>

site/src/pages/identity/SubHeading.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import React from 'react';
12
const SubHeading = (props) => {
23
return (
34
<div className="w-[53.75rem] text-gray-950 text-[2rem] font-medium font-qanelas-medium leading-[3rem]">

site/src/pages/identity/SubText.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import SubContent from './SubContent';
22
import SubHeading from './SubHeading';
3+
import React from 'react';
34

45
const SubText = (props) => {
56
return (

0 commit comments

Comments
 (0)