mirror of
https://github.com/cupcakearmy/fantus.git
synced 2024-11-01 13:04:34 +01:00
10 lines
170 B
TypeScript
10 lines
170 B
TypeScript
|
import React from 'react'
|
||
|
import getConfig from 'next/config'
|
||
|
|
||
|
const config = getConfig()
|
||
|
|
||
|
const Env = () => <div>
|
||
|
{JSON.stringify(config)}
|
||
|
</div>
|
||
|
|
||
|
export default Env
|