feature function
Implementation
FeatureDescriptor feature({List<go.RouteBase> Function()? routes}) =>
FeatureDescriptor(
name: 'auth',
title: 'Authentication UI',
icon: Icons.account_circle_outlined,
extensions: [descriptor],
routes: routes ??
() => [
CMSRoute(path: '/login'),
CMSRoute(path: '/signup'),
CMSRoute(path: '/forgot-password'),
],
);