Junjie
2024-03-27 be6360e39dd7e04c6f9d30b58baf83b9d0f126be
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
27
28
29
30
import React, { useState, useRef, useEffect } from 'react';
import { Card, Form, Button } from 'antd';
import { FormattedMessage, useIntl, useModel } from '@umijs/max';
import { createStyles } from 'antd-style';
import * as Utils from '../../utils'
import Http from '@/utils/http';
 
const useStyles = createStyles(({ token, css }) => {
 
})
 
const ShelfView = (props) => {
    const intl = useIntl();
    const { styles } = useStyles();
 
    const refContainer = useRef();
 
    useEffect(() => {
 
    }, []);
 
    return (
        <>
           <div style={{zIndex: 99}} ref={refContainer}></div>
            <h1>{props.data.uuid}</h1>
        </>
    )
}
 
export default ShelfView;