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
5 changes: 5 additions & 0 deletions .changeset/heavy-streets-fry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@stackflow/plugin-basic-ui": minor
---

Export AppBar
2 changes: 1 addition & 1 deletion extensions/plugin-basic-ui/src/components/AppBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { compactMap } from "../utils";
import * as css from "./AppBar.css";
import * as appScreenCss from "./AppScreen.css";

type AppBarProps = Partial<
export type AppBarProps = Partial<
Pick<
GlobalVars["appBar"],
| "borderColor"
Expand Down
1 change: 1 addition & 0 deletions extensions/plugin-basic-ui/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export { IconBack, IconClose } from "./assets";
export { basicUIPlugin } from "./basicUIPlugin";
export { globalVars as cssVars } from "./basicUIPlugin.css";
export { type AppBarProps, default as AppBar } from "./components/AppBar";
export {
AppScreenContext,
AppScreenProps,
Expand Down
Loading