page.js 350 B

123456789101112131415161718
  1. import React from 'react';
  2. import './index.less';
  3. import Page from '@src/containers/Page';
  4. import { BuyBlock } from '../../../components/Block';
  5. export default class extends Page {
  6. init() {}
  7. renderView() {
  8. return (
  9. <div>
  10. <BuyBlock theme="not" />
  11. <BuyBlock />
  12. <BuyBlock theme="end" />
  13. </div>
  14. );
  15. }
  16. }