74a2f16501
* feat: Show active file name when saving to current file * Make requested changes * More changes
21 lines
554 B
TypeScript
21 lines
554 B
TypeScript
import React from "react";
|
|
import { ActionManager } from "../actions/manager";
|
|
import { AppState } from "../types";
|
|
|
|
export const BackgroundPickerAndDarkModeToggle = ({
|
|
appState,
|
|
setAppState,
|
|
actionManager,
|
|
showThemeBtn,
|
|
}: {
|
|
actionManager: ActionManager;
|
|
appState: AppState;
|
|
setAppState: React.Component<any, AppState>["setState"];
|
|
showThemeBtn: boolean;
|
|
}) => (
|
|
<div style={{ display: "flex" }}>
|
|
{actionManager.renderAction("changeViewBackgroundColor")}
|
|
{showThemeBtn && actionManager.renderAction("toggleTheme")}
|
|
</div>
|
|
);
|