aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/Banner.js
blob: 27eb5e9c5de6fd90a4748f8f7d193290ca95130b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import '../App.css';
import './Banner.css';

function Banner() {
    return (
      <>
      <h1>Welcome To Watchdogs...</h1>
      </>
    );
}

export default Banner;