non-fungible-apps/ui/src/views/explore/explore.styles.ts

9 lines
194 B
TypeScript

import { Flex } from '@/components';
import { styled } from '@/theme';
export abstract class Explore {
static readonly Container = styled(Flex, {
flexDirection: 'column',
});
}