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