File size: 392 Bytes
372531f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import React from 'react';

export default function Report({report}:any) {

    return (
        <div>

            <h2>Research Report</h2>

            <div id="reportContainer">

                {/* <MarkdownView

                    markdown={report}

                    options={{ tables: true, emoji: true }}

                /> */}

            </div>

        </div>
    );
};