Hello,
I want use slide navigation in my APP.
there is code:
import React from 'react';
import { SideNavigation } from '@atlaskit/side-navigation';
import AppFrame from '../common/app-frame';
const ContainerExample = () => {
return (
<AppFrame shouldHideAppBar shouldHideBorder>
<SideNavigation label="project">
<div />
</SideNavigation>
</AppFrame>
);
};
export default ContainerExample;
but where i can find “import AppFrame from ‘…/common/app-frame’;” ?
where I can find app-frame component in Atlaskit ?