diff --git a/src/components/status.js b/src/components/status.js index 290f7ef0d..0d2c3e9f6 100644 --- a/src/components/status.js +++ b/src/components/status.js @@ -89,7 +89,7 @@ const statusFieldTypes = [ {type: 'Stable', name: 'Stable'}, {type: 'Beta', name: 'Beta'}, {type: 'Alpha', name: 'Alpha'}, - {type: 'Draft', name: 'Draft'}, + {type: 'Experimental', name: 'Experimental'}, {type: 'Deprecated', name: 'Deprecated'}, ] diff --git a/src/layouts/react-component-layout.tsx b/src/layouts/react-component-layout.tsx index d06ef3f28..e28d4702c 100644 --- a/src/layouts/react-component-layout.tsx +++ b/src/layouts/react-component-layout.tsx @@ -67,7 +67,7 @@ export const query = graphql` export default function ReactComponentLayout({data}) { const {name, status, a11yReviewed, props: componentProps, subcomponents, stories} = data.reactComponent - const importStatement = `import {${name}} from '@primer/react${status === 'draft' ? '/drafts' : ''}'` + const importStatement = `import {${name}} from '@primer/react${status === 'experimental' ? '/experimental' : ''}'` const tableOfContents = { items: [