123456789101112131415161718 |
- import React from 'react';
- import './index.less';
- import Page from '@src/containers/Page';
- import { BuyBlock } from '../../../components/Block';
- export default class extends Page {
- init() {}
- renderView() {
- return (
- <div>
- <BuyBlock theme="not" />
- <BuyBlock />
- <BuyBlock theme="end" />
- </div>
- );
- }
- }
|