index.jsx 218B

123456789101112
  1. import React from 'react';
  2. import Page from '@/layouts/index';
  3. import Card from './components/Card/index';
  4. export default (props) => {
  5. return (
  6. <Page tabBar="notice">
  7. <Card />
  8. </Page>
  9. )
  10. }