TinyForest system front-end written with ReactJS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

36 lines
925 B

import React from 'react';
import Modalbox1 from './Modalbox1';
import Modalbox2 from './Modalbox2';
import Modalbox3 from './Modalbox3';
import Modalbox4 from './Modalbox4';
import Modalbox5 from './Modalbox5';
import Modalbox6 from './Modalbox6';
import Modalbox7 from './Modalbox7';
import Modalbox8 from './Modalbox8';
import Modalbox9 from './Modalbox9';
import Modalbox10 from './Modalbox10';
import Modalbox11 from './Modalbox11';
import Modalbox12 from './Modalbox12';
const ModalGrid = () => {
return (
<div className="modal-wrapper">
<Modalbox1 />
<Modalbox2 />
<Modalbox3 />
<Modalbox4 />
<Modalbox5 />
<Modalbox6 />
<Modalbox9 />
<Modalbox10 />
<Modalbox11 />
<Modalbox7 />
<Modalbox8 />
<Modalbox12 />
</div>
);
};
export default ModalGrid;