'Exit editor mode' button in wat editor.

This commit is contained in:
muzam1l
2022-07-13 15:40:08 +05:30
parent 243cbfec08
commit c7001f6089

View File

@@ -135,6 +135,20 @@ const DeployEditor = () => {
});
}}
theme={theme === "dark" ? "dark" : "light"}
overlay={
<Flex
css={{
m: "$1",
ml: "auto",
fontSize: "$sm",
color: "$textMuted",
}}
>
<Link onClick={() => setShowContent(false)}>
Exit editor mode
</Link>
</Flex>
}
/>
)}
</Container>