13 lines
214 B
TypeScript
13 lines
214 B
TypeScript
|
import React from 'react'
|
||
|
import ThroughPut from './throughPut/throughPut'
|
||
|
|
||
|
function SimulationAnalysis() {
|
||
|
return (
|
||
|
<>
|
||
|
<ThroughPut />
|
||
|
</>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default SimulationAnalysis
|