import React from "react";

const Subpage = () => {
	return (
		<div className="subpage">
			<h1>Welcome to the subpage</h1>
		</div>
	);
};

export default Subpage;
