10 lines
141 B
React
10 lines
141 B
React
|
|
function Contact() {
|
||
|
|
return (
|
||
|
|
<div className="container">
|
||
|
|
<h1>Welcome to Contact</h1>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default Contact;
|