import React from 'react' const Test3 = () =>

Server Test 3

Test3.getInitialProps = () => { const doAsyncWork = () => Promise.reject(new Error('Server Test 3')) doAsyncWork() return {} } export default Test3