9 lines
135 B
JavaScript
9 lines
135 B
JavaScript
function App() {
|
|
return (
|
|
<>
|
|
<p>You are not supposed to be here. Reload the page.</p>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|