dwysokinski.me/src/pages/index.js

8 lines
172 B
JavaScript
Raw Normal View History

2021-01-17 08:31:50 +00:00
import React from 'react';
2020-07-13 09:45:24 +00:00
import BaseIndexPage from '@features/IndexPage/IndexPage';
2020-07-13 09:45:24 +00:00
const IndexPage = props => <BaseIndexPage {...props} />;
2020-07-13 09:45:24 +00:00
2021-01-17 08:31:50 +00:00
export default IndexPage;