Files
5chan/src/components/Thread.jsx
T

10 lines
165 B
React
Raw Normal View History

2023-02-01 13:30:32 +01:00
import React from 'react';
2023-02-02 21:58:02 +01:00
import { Title } from './styled/Board.styled';
2023-01-31 23:08:57 +01:00
2023-02-02 21:58:02 +01:00
const Thread = () => {
return (
<Title>thread</Title>
);
2023-01-31 23:08:57 +01:00
}
export default Thread;