initial homepage UI

This commit is contained in:
plebbitor
2023-02-02 21:58:02 +01:00
parent 66b707c3f2
commit 162c6ebd1b
10 changed files with 180 additions and 26 deletions
+5 -8
View File
@@ -1,13 +1,10 @@
import React from 'react';
import { Title } from './styled/Board.styled';
class Thread extends React.Component {
render() {
return (
<div>
<h1>Thread</h1>
</div>
);
}
const Thread = () => {
return (
<Title>thread</Title>
);
}
export default Thread;