fix error "Identifier 'IndexPage' has already been declared"

This commit is contained in:
Dawid Wysokiński 2021-05-14 12:51:56 +02:00
parent b6a73484f6
commit 0748006697
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
import React from 'react';
import IndexPage from '@features/IndexPage/IndexPage';
import BaseIndexPage from '@features/IndexPage/IndexPage';
const IndexPage = props => <IndexPage {...props} />;
const IndexPage = props => <BaseIndexPage {...props} />;
export default IndexPage;