aboutsummaryrefslogtreecommitdiff
path: root/components/root/sidebar.go
blob: 7784cdfda82aa76b0d57c8c8c8b7ee884ecd274d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package root

import (
	"nectar/styles"
	"nectar/types"

	"github.com/charmbracelet/lipgloss"
)

func Sidebar(globals *types.Globals) string {
	return styles.BaseStyle.
		Width(30).Height(globals.Height - 1).
		BorderRight(true).
		BorderStyle(lipgloss.NormalBorder()).
		Render("Sidebar placeholder")
}