ryesun's picture
initial
d757506
raw
history blame contribute delete
147 Bytes
import { useState } from 'react'
function NotPage() {
return (
<div className="NotPage">
404
</div>
)
}
export default NotPage