Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | import styled from '@emotion/styled'; import { memo } from 'react'; import { Group } from '@allshares/studio-design-system'; import { PlanHubRuleDesignerChallengeDrawer } from './drawer/PlanHubRuleDesignerChallengeDrawer'; import { PlanHubRuleDesignerChallengePreview } from './preview/PlanHubRuleDesignerChallengePreview'; const StyledContainer = styled(Group)` height: 100%; background-color: ${({ theme }) => theme.ds.colors.gray[0]}; [data-color-scheme='dark'] & { background-color: ${({ theme }) => theme.ds.colors.dark[800]}; } `; export const PlanHubRuleDesignerChallengeTabContainer = memo(function PlanHubRuleDesignerChallengeTabContainer() { return ( <StyledContainer> <PlanHubRuleDesignerChallengeDrawer /> <PlanHubRuleDesignerChallengePreview /> </StyledContainer> ); }); |