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

10 lines
161 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 Board = () => {
return (
<Title>board</Title>
)
2023-01-31 23:08:57 +01:00
}
export default Board;