import { useStore } from '@nanostores/react' import React from 'react' import { headerActionsStore } from '../../stores/headerActions' import { EXT_NAME } from '../../utils/constants' import logo from '../assets/logo.svg' import { Button } from './Button' export const Header = () => { const actions = useStore(headerActionsStore) return (
{EXT_NAME}
{actions.map((a) => ( ))}
) }