Module:Infocard/Test

From Halopedia, the Halo wiki

Documentation for this module may be created at ModuleDoc:Infocard/Test

local infocard = require( 'Module:Infocard' )

local p = {}

function p.test() 
	return infocard.new()
		.withTitle( 'Hello, world!' )
		.withField( 'TestKey1', 'TestValue1')
		.withField( 'TestKey2', 'TestValue2')
		.render()
end

return p