CircuitPreview

A composable function that provides no-op/empty Circuit composition locals that can be safely used within a @Preview composable.

Example:

@Preview
fun ListItemPreview() {
CircuitPreview {
ListItem()
}
}