import React from "react";
import { CommandBar, ICommandBarItemProps, Text } from "@fluentui/react";
export const AppBar = (): JSX.Element => {
const items: ICommandBarItemProps[] = [
{
key: "title",
text: "title",
onRender: () => (
JSON Online Editor
),
},
];
return (
);
};