import { APP_NAME } from 'lib/constants' import { OnboardingButtons, useDismiss, useNextClick } from '.' import { onboardingPaths } from 'routes/Onboarding/paths' import { useStore } from '../../useStore' export default function Export() { const { buttonDownInStream } = useStore((s) => ({ buttonDownInStream: s.buttonDownInStream, })) const dismiss = useDismiss() const next = useNextClick(onboardingPaths.SKETCHING) return (

Export

Try opening the project menu and clicking the "Export Part" at the bottom of the pane.

{APP_NAME} uses{' '} our open-source extension proposal {' '} for the gLTF file format.{' '} Our conversion API {' '} can convert to and from most common CAD file formats, allowing export to almost any CAD software.

Our teammate David is working on the file format, check out{' '} his talk with the Metaverse Standards Forum !

) }