Files
nobat724_front/app/login-verify/page.js
T

13 lines
300 B
JavaScript

import Layout from '@/components/layout'
import LoginVerifyPage from '@/components/loginVerify'
import React from 'react'
function LoginVerify() {
return (
<Layout title='وبلاگ ها' name='blogs'>
<LoginVerifyPage />
</Layout>
)
}
export default LoginVerify