From 370098609840a1cc1f00106bc7e8aa26adaa127b Mon Sep 17 00:00:00 2001 From: Phil Owen <19691521+PhillipsOwen@users.noreply.github.com> Date: Wed, 1 May 2024 10:48:16 -0400 Subject: [PATCH] reverting back to the original --- src/app.js | 24 ++++-------------------- 1 file changed, 4 insertions(+), 20 deletions(-) diff --git a/src/app.js b/src/app.js index 190d398b..798abe11 100644 --- a/src/app.js +++ b/src/app.js @@ -1,26 +1,10 @@ import React, { Fragment } from 'react'; import { Map } from '@components/map'; -import BaseFloatingDialog from "@utils/dialog-utils"; export const App = () => { - const subObj = () => { - return ( - - - - This is a dialog sub-component. - - - - ); - }; - - const floaterArgs = {title: "The dialog title.", description: "The dialog description.", openDialogImmediately:true, "dialogObject": {...subObj()}}; - - return ( + return ( - - - - ); + + + ); };