Deskripsi: - update api division - update layout - update global - update auth - update division - update home - update task No Issue
11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
// components/NoZoom.js
|
|
import Head from 'next/head';
|
|
|
|
export default function NoZoom() {
|
|
return (
|
|
<Head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
</Head>
|
|
);
|
|
}
|