1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-02-25 03:52:59 +01:00
2019-08-24 18:44:29 +04:00

11 lines
133 B
JavaScript

import React from 'react';
import Home from './home';
const Index = () => (
<div>
<Home />
</div>
);
export default Index;