Moved code into src folder. Added build for component library.
This commit is contained in:
12
src/components/pages/websites/WebsiteEventDataPage.js
Normal file
12
src/components/pages/websites/WebsiteEventDataPage.js
Normal file
@@ -0,0 +1,12 @@
|
||||
import Page from 'components/layout/Page';
|
||||
import WebsiteHeader from './WebsiteHeader';
|
||||
import WebsiteEventData from './WebsiteEventData';
|
||||
|
||||
export default function WebsiteEventDataPage({ websiteId }) {
|
||||
return (
|
||||
<Page>
|
||||
<WebsiteHeader websiteId={websiteId} />
|
||||
<WebsiteEventData websiteId={websiteId} />
|
||||
</Page>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user