Create Teks page
This commit is contained in:
@@ -0,0 +1,23 @@
|
|||||||
|
import Navigasyon from '../components/navigasyon'
|
||||||
|
import {jwennTeks} from '../lib/oki-api'
|
||||||
|
|
||||||
|
export default function Teks() {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Navigasyon selectedTab={2} />
|
||||||
|
<div>
|
||||||
|
Teks
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function getServerSideProps() {
|
||||||
|
const mizik = await jwennTeks()
|
||||||
|
|
||||||
|
return {
|
||||||
|
props: {
|
||||||
|
mizik
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user