mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
14 lines
326 B
JavaScript
14 lines
326 B
JavaScript
import React from 'react';
|
|
import { AlertLazy } from './components'
|
|
import registered from './registered';
|
|
|
|
export default function AlertsContainer() {
|
|
return (
|
|
<React.Fragment>
|
|
{registered.map((alert) => (
|
|
<AlertLazy name={alert.name} Component={alert.component} />
|
|
))}
|
|
</React.Fragment>
|
|
);
|
|
}
|