20 lines
428 B
JavaScript
20 lines
428 B
JavaScript
import React from 'react'
|
|
|
|
import Item2 from './substitutionCharts/Chart1.jsx'
|
|
import Item1 from './substitutionCharts/Chart2.jsx'
|
|
|
|
import cls from './index.module.less'
|
|
|
|
export default function index() {
|
|
return (
|
|
<div className='flex justify-between w-full h-full'>
|
|
<div className={cls.leftGrid}>
|
|
<Item1 />
|
|
</div>
|
|
<div className={cls.rightTable}>
|
|
<Item2 />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|