Skip to content

Commit

Permalink
Remove react import statement
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaschlegel committed Oct 28, 2024
1 parent 13be74f commit 74327d9
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 11 deletions.
6 changes: 3 additions & 3 deletions app/cv/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable react/no-array-index-key */
import fs from 'node:fs/promises';
import path from 'node:path';
import React from 'react';
import { Fragment } from 'react';
import CvTabs from '../components/CvTabs';

interface Job {
Expand Down Expand Up @@ -354,7 +354,7 @@ const CvPage = async () => {
);

return (
<React.Fragment key={`pubs-${year}`}>
<Fragment key={`pubs-${year}`}>
{/* Publications Column */}
<div
style={{
Expand Down Expand Up @@ -390,7 +390,7 @@ const CvPage = async () => {
</div>
))}
</div>
</React.Fragment>
</Fragment>
);
})}
</div>
Expand Down
2 changes: 0 additions & 2 deletions app/imprint/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import React from 'react';

const Imprint = () => {
return (
<div className="container mx-auto px-4 py-16">
Expand Down
1 change: 0 additions & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react';
import Banner from './components/Banner';
import FeaturedProjects from './components/FeaturedProjects';
import Hero from './components/Hero';
Expand Down
2 changes: 0 additions & 2 deletions app/privacy-policy/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import React from 'react';

const PrivacyPolicy = () => {
return (
<div className="container mx-auto px-4 py-16">
Expand Down
2 changes: 1 addition & 1 deletion app/projects/[slug]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { MDXComponents } from 'mdx/types';
import Image from 'next/image';
import { notFound } from 'next/navigation';
import { JSX } from 'react';
import type { JSX } from 'react';
import type { ProjectType } from '../../../types/global';
import { projectsData } from '../../data/content';

Expand Down
2 changes: 0 additions & 2 deletions app/terms-and-conditions/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import React from 'react';

const TermsAndConditions = () => {
return (
<div className="container mx-auto px-4 py-16">
Expand Down

0 comments on commit 74327d9

Please sign in to comment.