feat: Add Layout with AppBar and Drawer

This commit is contained in:
Ali BARIN
2021-10-05 20:35:13 +02:00
parent f032dea77e
commit 3f56da5efb
11 changed files with 262 additions and 6 deletions

View File

@@ -1,10 +1,10 @@
import React from 'react';
import { FormattedMessage } from 'react-intl';
import Layout from 'components/Layout';
function App() {
export default function App() {
return (
<FormattedMessage id="welcomeText" />
<Layout>
<FormattedMessage id="welcomeText" />
</Layout>
);
}
export default App;