rsnext/test/integration/conformance/pages/page2.js
Prateek Bhatnagar 16672a4353
Adding conformance checks (#10314)
* adding tests  for rect sync conformance check

* adding test for react sync script conformance check

* reverting yarn lock changes

* adding duplicate polyfill conformance

* bug fixes in dulpicate polyfill conformance check

* adding settings capability to conformance plugin

* removing minification check from server build

* bug fix

* settings for react sync script check
2020-03-02 22:53:18 +01:00

24 lines
585 B
JavaScript

import { useState, useEffect } from 'react'
import _ from 'lodash'
import dynamic from 'next/dynamic'
const One = dynamic(() => import('../components/one'))
const Page = () => {
const [str, setStr] = useState('rad')
useEffect(() => {
setStr(_.pad(str, 7, '_'))
}, [str])
console.log(_)
return (
<div>
page2
<p id="padded-str">{str}</p>
<One />
<script src="https://polyfill.io/v3/polyfill.min.js?features=Blob%2CDocumentFragment%2CElement.prototype.append%2CElement.prototype.remove%2Cfetch"></script>
</div>
)
}
export default Page