Utilize Accordians
src/App.js
import React from 'react';
import Accordian from './components/minute-components/accordians/Accordian';
export default function App() {
return (
<div>
<Accordian head="Header" body="body" type="primary"/>
<Accordian head="Header" body="body" type="secondary"/>
</div>
);
}

Parameters
head: It signifies the header of accordian
body: It signifies the body of accordian
type: Primary & Secondary are two available themes for the accordian