I'm trying to deploy a standalone kedro viz app wi...
# advanced-need-help
c
I'm trying to deploy a standalone kedro viz app with
React App
project but when I run
npm start
I got no errors but nothing appears in the browser. Is there a special thing to add to React to make it works ? I tried this code:
Copy code
js
import './App.css';
import KedroViz from '@quantumblack/kedro-viz';
import json from './training_pipeline.json';

const PipelineViz = () => <KedroViz data={json} />;

export default PipelineViz;