| import React from 'react'; | |
| import CNNVisualizer from './components/CNNVisualizer'; | |
| function App() { | |
| return ( | |
| <div className="min-h-screen bg-gray-900 text-gray-100"> | |
| <CNNVisualizer /> | |
| </div> | |
| ); | |
| } | |
| export default App; |
| import React from 'react'; | |
| import CNNVisualizer from './components/CNNVisualizer'; | |
| function App() { | |
| return ( | |
| <div className="min-h-screen bg-gray-900 text-gray-100"> | |
| <CNNVisualizer /> | |
| </div> | |
| ); | |
| } | |
| export default App; |