21 lines
246 B
JavaScript
21 lines
246 B
JavaScript
import { Kasko } from './Kasko';
|
|
import { Osago } from './Osago';
|
|
|
|
const id = 'elt';
|
|
const title = 'ЭЛТ';
|
|
|
|
function ELT() {
|
|
return (
|
|
<>
|
|
<Osago />
|
|
<Kasko />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default {
|
|
Component: ELT,
|
|
id,
|
|
title,
|
|
};
|