rsnext/examples/with-universal-configuration-build-time/pages/index.js
Corbin Crutchley e03266008c form handler example: Update deps and fix build from dep update (#6732)
* form handler example: Update deps and fix build from dep update

* Ran lint error fixers

* Fixes errors that occur when commit occurs

* Commit linter fixes
2019-03-27 16:12:45 -04:00

9 lines
229 B
JavaScript

export default () => (
<div>
<p>Environment variable process.env.TEST is "{process.env.TEST}"</p>
<p>
Custom environment variables process.env.BACKEND_URL is "
{process.env.BACKEND_URL}"
</p>
</div>
)