dwysokinski.me/src/pages/index.js

8 lines
160 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
2021-01-17 08:31:50 +00:00
import HomePage from '@features/HomePage/HomePage';
2020-07-13 09:45:24 +00:00
2021-01-17 08:31:50 +00:00
const IndexPage = props => <HomePage {...props} />;
2020-07-13 09:45:24 +00:00
2021-01-17 08:31:50 +00:00
export default IndexPage;