Footer.tsx 273 Bytes
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
2
3
4
import React from "react";
export const Footer = () => {
  return (
    <div className="flex justify-center mt-5 py-1 bg-gray-100">
Jiwon Yoon's avatar
Jiwon Yoon committed
5
      <p className="text-gray-500 text-sm">
Jiwon Yoon's avatar
Jiwon Yoon committed
6
7
8
9
10
        Copyright © 2022 Simple Survey Form. All rights reserved.
      </p>
    </div>
  );
};