//! Let your users split regions of your application and organize layout dynamically.
//!
//! [](https://gfycat.com/mixedflatjellyfish)
//!
//! # Example
//! The [`pane_grid` example] showcases how to use a [`PaneGrid`] with resizing,
//! drag and drop, and hotkey support.
//!
//! [`pane_grid` example]: https://github.com/hecrj/iced/tree/0.2/examples/pane_grid
use crateRenderer;
pub use ;
/// A collection of panes distributed using either vertical or horizontal splits
/// to completely fill the space available.
///
/// [](https://gfycat.com/mixedflatjellyfish)
///
/// This is an alias of an `iced_native` pane grid with an `iced_wgpu::Renderer`.
pub type PaneGrid<'a, Message> = PaneGrid;
/// The content of a [`Pane`].
pub type Content<'a, Message> = Content;
/// The title bar of a [`Pane`].
pub type TitleBar<'a, Message> = TitleBar;