diff --git a/src/follow-me/edit.js b/src/follow-me/edit.js
index 8ba21e9..4382df0 100644
--- a/src/follow-me/edit.js
+++ b/src/follow-me/edit.js
@@ -1,6 +1,11 @@
import { InspectorControls, useBlockProps } from '@wordpress/block-editor';
import { __ } from '@wordpress/i18n';
-import { SelectControl, PanelBody, Button } from '@wordpress/components';
+import {
+ SelectControl,
+ PanelBody,
+ Button,
+ __experimentalConfirmDialog as ConfirmDialog
+} from '@wordpress/components';
import { useUserOptions } from '../shared/use-user-options';
import apiFetch from '@wordpress/api-fetch';
import { useEffect, useState } from '@wordpress/element';
@@ -89,10 +94,22 @@ function Profile( profile ) {
}
function Follow( { profile } ) {
+ const [ isOpen, setIsOpen ] = useState( false );
return (
-
+ <>
+
+ setIsOpen( false ) }
+ onCancel={ () => setIsOpen( false ) }
+ >
+ Todo: put the follow layout in here.
+
+
+ >
);
}