interstellar_ai/app/History.tsx

21 lines
440 B
TypeScript
Raw Normal View History

2024-09-18 10:03:36 +02:00
import React from 'react';
const History: React.FC = () => {
return (
<div className="history-background">
<div className="history">
<ul>
2024-09-18 11:17:34 +02:00
{/* Populate with history items */}
{Array.from({ length: 20 }, (_, index) => (
<li key={index}>
<a href="#">history{index + 1}</a>
</li>
))}
</ul>
2024-09-18 10:03:36 +02:00
</div>
</div>
);
};
export default History;