Skip to content

Commit a49b678

Browse files
committed
Fix
1 parent 59452cf commit a49b678

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/CallToAction/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import clsx from "clsx";
33
import styles from "./styles.module.css";
44
import React from "react";
55

6-
export default function CallToAction(): JSX.Element {
6+
export default function CallToAction(): React.JSX.Element {
77
return (
88
<section className={styles.section}>
99
<div className="container">

src/components/HomepageProducts/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import clsx from "clsx";
33
import styles from "./styles.module.css";
44
import React from "react";
55

6-
export default function HomepageProducts(): JSX.Element {
6+
export default function HomepageProducts(): React.JSX.Element {
77
return (
88
<section className={styles.features}>
99
<div className="container">

src/pages/products.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from "react";
22
import Layout from "@theme/Layout";
33
import ProductsDemo from "../components/Demos";
44

5-
export default function Products(): JSX.Element {
5+
export default function Products(): React.JSX.Element {
66
return (
77
<Layout
88
title="Products"

0 commit comments

Comments
 (0)