openreplay/frontend/app/components/ui/Information/Information.js
Shekar Siri 2ed5cac986
Webpack upgrade and dependency cleanup (#523)
* change(ui) - webpack update
* change(ui) - api optimize and other fixes
2022-06-03 16:47:38 +02:00

13 lines
295 B
JavaScript

import React from 'react'
import stl from './information.module.css'
import cn from 'classnames'
function Information({ primary = true, content = '' }) {
return (
<div className={cn(stl.wrapper, { [stl.primary]: primary })}>
{ content }
</div>
)
}
export default Information