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 './components/Hello';
import Layout from './components/Layout';
import './App.css';
export default function App({ children }) {
return (
<Layout>
<Hello />
</Layout>
);
}