Skip to content

Commit b1bbf6b

Browse files
committed
ts eslint complaints tended
1 parent 9582ff3 commit b1bbf6b

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

src/App.tsx

-6
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,6 @@ export default function App() {
101101
</div>
102102
</header>
103103
<div className="mx-auto max-w-7xl py-6 sm:px-6 lg:px-8">
104-
<div className="min-h-full">
105-
<header className="bg-white shadow-sm">
106-
</header>
107-
<CardL title={""} content={""} image={""} />
108-
</div>
109-
<div className="my-80"></div>
110104
<div className="px-4 py-6 sm:px-0 flex flex-col space-y-8 text-xs">
111105
<h2 className="text-xl font-bold tracking-tight text-gray-900 mb-2">
112106
Legacy content

src/CardL.tsx

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
import React from "react";
22

3-
interface Props {
4-
title: String;
5-
content: String;
6-
image: String;
7-
}
8-
9-
export default function CardL(props: Props) {
10-
const { title, content, image } = props;
3+
export default function CardL() {
114
return (
125
<div className="py-16 bg-white">
136
<div className="container m-auto flex px-6 text-gray-600 md:px-12 xl:px-6 flex-wrap sm:flex-nowrap">

0 commit comments

Comments
 (0)