Open in Web IDE
Quickly and easily edit multiple files in your project.
Edit
Edit this file only.
import React from 'react';
import Hello from './Hello';
import Layout from './Layout';
import './App.css';
export default function App({ children }) {
return (
<Layout>
<Hello />
</Layout>
);
}
module.hot.accept(['./Layout', './Hello'], window.__invalidate);