From a96c52b21e7e590bbdd70b80896780a446fa2e8b Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Mon, 13 Dec 2021 02:07:04 +0100 Subject: build: separate module for frontend This allows us to simplify the webpack configuration and the gradle build scripts. --- subprojects/frontend/src/App.tsx | 60 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 subprojects/frontend/src/App.tsx (limited to 'subprojects/frontend/src/App.tsx') diff --git a/subprojects/frontend/src/App.tsx b/subprojects/frontend/src/App.tsx new file mode 100644 index 00000000..54f92f9a --- /dev/null +++ b/subprojects/frontend/src/App.tsx @@ -0,0 +1,60 @@ +import AppBar from '@mui/material/AppBar'; +import Box from '@mui/material/Box'; +import IconButton from '@mui/material/IconButton'; +import Toolbar from '@mui/material/Toolbar'; +import Typography from '@mui/material/Typography'; +import MenuIcon from '@mui/icons-material/Menu'; +import React from 'react'; + +import { EditorArea } from './editor/EditorArea'; +import { EditorButtons } from './editor/EditorButtons'; +import { GenerateButton } from './editor/GenerateButton'; + +export function App(): JSX.Element { + return ( + + + + + + + + Refinery + + + + + + + + + + + + ); +} -- cgit v1.2.3-54-g00ecf