Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "none",
"comment": "Update react-components/react-portal README.md",
"packageName": "@fluentui/react-portal",
"email": "[email protected]",
"dependentChangeType": "none"
}
4 changes: 2 additions & 2 deletions packages/react-components/react-portal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ Below shows what a virtual parent is
```tsx
// Setting a virtual parent

const parent document.getElementById('parent')
const child document.getElement.ById('child');
const parent = document.getElementById('parent');
const child = document.getElementById('child');

child._virtual.parent = parent;
```
Expand Down