package downloadView import ( "github.com/fossyy/filekeeper/view/layout" "github.com/fossyy/filekeeper/types" ) templ component(title string, files []types.FileData){ @layout.Base(title){
} } templ Main(title string, files []types.FileData){ @component(title, files) }