# Overview
Add an initial barebones version of the component with minimal to no customizations.
- A container with content.
- The container is a floating element that can be teleported to a target element if provided, otherwise defaults to the `<body>` element. Teleportation is enabled via Vue [[ https://vuejs.org/guide/built-ins/teleport.html | <Teleport> ]] and can be disabled via its `disabled` prop.
- The target element triggers the Popover to show and hide.
## Acceptance Criteria
[x] Add a container with one slot.
[x] Add a `target` prop and fallback behavior when the target element is not provided.
[x] Demonstrate how to use Popover in the Sandbox demo page.
- In Sandbox, confirm that the teleportation works by setting the `target` prop to `#teleport-target` selector. The Popover with this target will teleport to the `<div id="teleport-target">` element on the Sandbox page.