mirror of
https://github.com/recloudstream/website.git
synced 2024-08-15 03:18:45 +00:00
markdown table stuff
This commit is contained in:
parent
1b2f76b8fa
commit
a6ee650bef
1 changed files with 7 additions and 1 deletions
|
@ -27,8 +27,14 @@ const componentMap = {
|
|||
li: (props) => {
|
||||
return <li className="step" {...props} />
|
||||
},
|
||||
table: (props) => {
|
||||
return <table className="table w-full" {...props} />
|
||||
},
|
||||
tr: (props) => {
|
||||
return <tr className="hover" {...props} />
|
||||
},
|
||||
hr: (props) => {
|
||||
return <div class="divider" {...props} />
|
||||
return <div className="divider" {...props} />
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue