File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ const CustomTable = ({ data }: any) => {
5555 height = { 50 }
5656 className = "h-10 w-10 rounded-full"
5757 src = {
58- 'https://example.comm /photo-1570295999919-56ceb5ecca61'
58+ 'https://images.unsplash.com /photo-1570295999919-56ceb5ecca61'
5959 }
6060 alt = ""
6161 />
Original file line number Diff line number Diff line change 11import { FC , useState } from 'react' ;
22import axios from 'axios' ;
3+ import Head from 'next/head' ;
34
45import CustomTable from '../components/CustomTable' ;
56
@@ -8,6 +9,11 @@ const Home: FC<{ data: string[] }> = ({ data }) => {
89
910 return (
1011 < div className = "App" >
12+ < Head >
13+ < title > Home Page</ title >
14+ < meta name = "viewport" content = "initial-scale=1.0, width=device-width" />
15+ </ Head >
16+
1117 < header className = "text-center" >
1218 < h1 className = "px-10 py-10 bg-green-400 font-semibold font-mono text-white" >
1319 Hello from React + Tailwind + Typscript
You can’t perform that action at this time.
0 commit comments