13 lines
187 B
TypeScript
13 lines
187 B
TypeScript
'use client'
|
|
|
|
import { Agentation } from 'agentation'
|
|
|
|
export function AgentationGuard() {
|
|
if (process.env.NODE_ENV !== 'development') {
|
|
return null
|
|
}
|
|
|
|
return <Agentation />
|
|
}
|
|
|