Skip to content

Instantly share code, notes, and snippets.

View wbprice's full-sized avatar

Blaine Price wbprice

View GitHub Profile
@wbprice
wbprice / table-extend.lua
Created December 20, 2017 21:02 — forked from cha55son/table-extend.lua
Simple function that will recursively extend lua tables.
function extend(table1, table2)
for k,v in pairs(table2) do
if (type(table1[k]) == 'table' and type(v) == 'table') then
extend(table1[k], v)
else
table1[k] = v
end
end
end
import React from 'react'
import { Panel, Table } from 'react-bootstrap'
export default ({ associations }) => (
<Panel>
<Table>
<thead>
</thead>
<tbody>