mirror of
https://github.com/urbit/shrub.git
synced 2024-12-21 09:51:36 +03:00
208d8cebf9
Splits herm and the webterm interface out into their own directories for separate distribution. Webterm glob pending.
36 lines
766 B
TypeScript
36 lines
766 B
TypeScript
import { Box } from '@tlon/indigo-react';
|
|
import React, { Component } from 'react';
|
|
import Line from './line';
|
|
|
|
export class History extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<Box
|
|
height='100%'
|
|
minHeight={0}
|
|
minWidth={0}
|
|
display='flex'
|
|
flexDirection='column-reverse'
|
|
overflowY='scroll'
|
|
style={{ resize: 'none' }}
|
|
>
|
|
<Box
|
|
mt='auto'
|
|
>
|
|
{/* @ts-ignore declare props in later pass */}
|
|
{this.props.log.map((line, i) => {
|
|
// @ts-ignore react memo not passing props
|
|
return <Line key={i} line={line} />;
|
|
})}
|
|
</Box>
|
|
</Box>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default History;
|