2023-03-09 15:57:46 +01:00
|
|
|
const Hi = (props) => {
|
|
|
|
return <span style={{color:'seagreen',fontWeight:'bold'}}>{...props.children}</span>
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
'about.txt': <>
|
|
|
|
Hi! This is my online resume.
|
|
|
|
<br/>
|
|
|
|
You can browse files with <Hi>ls</Hi>, and read them with <Hi>cat</Hi>.
|
|
|
|
</>,
|
|
|
|
'super_secret_password.txt':
|
2023-03-09 16:14:19 +01:00
|
|
|
<span style={{color:'orange',fontWeight:'bold'}}>uwu</span>,
|
2023-03-09 15:57:46 +01:00
|
|
|
}
|