13 lines
300 B
JavaScript
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 |