react-code-dataset / next.js /test /development /pages-dir /client-navigation /fixture /pages /script.js
| import React from 'react' | |
| import Script from 'next/script' | |
| export default () => ( | |
| <div> | |
| <h1>I am a page to test next/script</h1> | |
| <Script src="/test-async-true.js" async /> | |
| ) | |