mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-14 02:52:49 +00:00
client - thread page work
This commit is contained in:
6
client/app/components/forum-nav/forum-nav.scss
Normal file
6
client/app/components/forum-nav/forum-nav.scss
Normal file
@@ -0,0 +1,6 @@
|
||||
.forum-nav {
|
||||
display: inline-block;
|
||||
padding-left: 5px;
|
||||
position: relative;
|
||||
bottom: 10;
|
||||
}
|
||||
20
client/app/components/forum-nav/forum-nav.tsx
Normal file
20
client/app/components/forum-nav/forum-nav.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
import React from 'react';
|
||||
import './forum-nav.scss';
|
||||
|
||||
interface Props {}
|
||||
|
||||
interface State {}
|
||||
|
||||
export class ForumNav extends React.Component<Props, State> {
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div>
|
||||
<img src={require('../../assets/wow-base-general.gif')}/>
|
||||
<div className="forum-nav">
|
||||
<small>Forum Nav:</small><select style={{ minWidth: '194px' }}></select>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user