forked from React-Group/interstellar_ai
20 lines
440 B
TypeScript
20 lines
440 B
TypeScript
import React from 'react';
|
|
|
|
const History: React.FC = () => {
|
|
return (
|
|
<div className="history-background">
|
|
<div className="history">
|
|
<ul>
|
|
{/* Populate with history items */}
|
|
{Array.from({ length: 20 }, (_, index) => (
|
|
<li key={index}>
|
|
<a href="#">history{index + 1}</a>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default History;
|