deep-foundation / deep-foundation/deep-packages

Simple browser client handler (deep package)

Open
#18 0 comments 0 reactions 0 assignees View on GitHub
help wanted
Dominant language
No language data
Stars
0
Forks
3
PR merge metrics
No merged PRs in 30d

Description

There should be a text field to make and ability to change the URL of the iframe.

This text field should be saved in Browser's link string value.

So if the user changes the URL, it will be persisted for the next time the browser is opened.

A draft of client handler:

```tsx
async ({ deep, require }) => {
const React = require('react');
const { Text } = require('@chakra-ui/react');

return ({ fillSize, style, link }) => {

const [url, setUrl] = React.useState("https://bing.com");

const onChange = (e) => {
setUrl(e.target.value);
};

const onClick = () => {
setUrl(url);
};

return (



Go


);
}
}
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.