Skip to content

Commit 1b0ae7c

Browse files
Remove unnecessary h1 element in App.js and fix typo in tailwind.config.js
1 parent f7375ff commit 1b0ae7c

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/App.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ import './App.css';
33
function App() {
44
return (
55
<div>
6-
<h1 class="text-3xl font-bold underline bg-black text-white">
7-
Hello world!
8-
</h1>
6+
97
</div>
108
);
119
}

tailwind.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/** @type {import('tailwindcss').Config} */
22
module.exports = {
3-
ccontent: ["./src/**/*.{html,js}"],
3+
content: ["./src/**/*.{html,js}"],
44
theme: {
55
extend: {},
66
},

0 commit comments

Comments
 (0)