import React from 'react'; import Lex from './components/Lex'; import './App.css'; function App() { const dummyContents = new Array(100).fill(0).map((_, idx) => { return (
Dummy のコンテンツ Dummy のコンテンツ Dummy のコンテンツ Dummy のコンテンツ
); }); return (

LexV2 Chatbot サンプル

{dummyContents}
); } export default App;