Skip to content

Commit d2d6eb3

Browse files
authored
Merge branch 'master' into lighthouse-ci-only
2 parents 3348862 + f9317f7 commit d2d6eb3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+278
-61
lines changed

components/About/about.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable react/no-unescaped-entities */
2-
import React from 'react';
2+
import React, { JSX } from 'react';
33
import Heading from '../Typography/heading';
44
import Paragraph from '../Typography/paragraph';
55
import Button from '../Buttons/button';

components/Agenda/agenda.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React from 'react';
1+
import React, { JSX } from 'react';
22
import Heading from '../Typography/heading';
33
import Paragraph from '../Typography/paragraph';
44
import { Agenda as AgendaType, ExtendedCity } from '../../types/types';

components/Buttons/button.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import React from 'react';
2+
13
type ButtonType = 'button' | 'submit' | 'reset' | undefined;
24

35
interface IButton {
@@ -18,7 +20,7 @@ function Button({
1820
type,
1921
disabled,
2022
test,
21-
}: IButton): JSX.Element {
23+
}: IButton): React.JSX.Element {
2224
return (
2325
<button
2426
disabled={disabled}

components/Dropdown/dropdown.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { useState, useRef, useEffect, SetStateAction } from 'react';
1+
import React, { useState, useRef, useEffect, SetStateAction, JSX } from 'react';
22
import { City } from '../../types/types';
33

44
interface IDropdown {

components/Footer/footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React from 'react';
1+
import React, { JSX } from 'react';
22
import Image from 'next/image';
33
import ILink from '../illustration/link';
44
import { Social } from '../../types/types';

components/Form/Cfp/stepOne.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable react/no-unescaped-entities */
2-
import React from 'react';
2+
import React, { JSX } from 'react';
33
import Button from '../../Buttons/button';
44
import { CfpStepProps } from '../../../types/types';
55

components/Form/Cfp/stepThree.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable react/no-unescaped-entities */
2-
import React, { useState, useEffect } from 'react';
2+
import React, { useState, useEffect, JSX } from 'react';
33
import Select from '../../Select/select';
44
import Button from '../../Buttons/button';
55
import { CfpStepProps, SelectOptions } from '../../../types/types';

components/Form/Cfp/stepTwo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable react/no-unescaped-entities */
2-
import React from 'react';
2+
import React, { JSX } from 'react';
33
import Button from '../../Buttons/button';
44
import { CfpStepProps } from '../../../types/types';
55

components/Form/paper.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { useState, useEffect, useRef, FormEvent } from 'react';
1+
import React, { useState, useEffect, useRef, FormEvent, JSX } from 'react';
22
import Confetti from 'react-confetti';
33
import StepOne from './Cfp/stepOne';
44
import StepTwo from './Cfp/stepTwo';

components/Form/subscription.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React from 'react';
1+
import React, { JSX } from 'react';
22
import Button from '../Buttons/button';
33

44
function Subscription(): JSX.Element {

0 commit comments

Comments
 (0)