import React, { Component } from 'react'
import Layout from '../components/core/layout';
import { EuiButton } from '@elastic/eui';
export default class MyComponent extends Component {
render() {
return (
<div>
<Layout>
This is a test.
<EuiButton>Primary</EuiButton>
</Layout>
</div>
);
}
}
I've attached the errror that is showing up on browser.

I'm developing an app using Next.js.. Any ways to fix it ?
I've attached the errror that is showing up on browser.

I'm developing an app using Next.js.. Any ways to fix it ?