blob: e0733a517d6bde243e3c77f31f9e97ea8734507c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
export default function Home() {
return (
<div className="">
<h1>Track a post</h1>
<form>
<input type="text" placeholder="Tracking Number" />
<button type="button">Track</button>
</form>
</div>
);
}
|