mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-05-08 10:17:49 +00:00
* initial commit * removing files * after pr * move StatusBar to common * last changes from dev * update common-ui * webSocket was added to TrafficViewerApi * useWS * actionButtons added to TrafficV * comment clean * api clean up * api clean up * statusbar position changed * Checkbox changed * AnalyzeButton exported to common * CustomModal added from Ent * oas modal exported to common * removed redundant * oasmodal usage * es6 function * api changed * removed react-scripts Co-authored-by: Leon <>
11 lines
439 B
TypeScript
11 lines
439 B
TypeScript
import TrafficViewer from './components/TrafficViewer/TrafficViewer';
|
|
import * as UI from "./components/UI"
|
|
import { StatusBar } from './components/UI';
|
|
import useWS,{DEFAULT_QUERY} from './hooks/useWS';
|
|
import {AnalyzeButton} from "./components/AnalyzeButton/AnalyzeButton"
|
|
import OasModal from './components/OasModal/OasModal';
|
|
|
|
export {UI,AnalyzeButton, StatusBar, OasModal}
|
|
export { useWS, DEFAULT_QUERY}
|
|
export default TrafficViewer;
|