Lines Matching refs:section
25 node('section', { name: 'Get started' }, [
30 node('section', { name: 'Tutorial' }, [
50 const section = getNode(nodes, { name: 'Get started' });
53 <Navigation routes={children(section)} />
63 const section = getNode(nodes, { name: 'Tutorial' });
66 <Navigation routes={children(section)} />
97 const section = getNode(nodes, { name: 'Get started' });
98 expect(findActiveRoute(children(section), '/introduction/create-new-app')).toMatchObject({
99 page: getNode(section, { name: 'Create a new app' }),
101 section: null,
106 const section = getNode(nodes, { name: 'Tutorial' });
107 expect(findActiveRoute(children(section), '/build/eas-submit')).toMatchObject({
108 page: getNode(section, { name: 'Submitting to store' }),
109 group: getNode(section, { name: 'Building apps' }),
110 section: null,
114 it('finds active page, group, and section in list', () => {
118 section: getNode(nodes, { name: 'Tutorial' }),
126 section: null,
147 case 'section':