File size: 354 Bytes
85a4687
 
 
 
 
 
 
 
 
 
5541427
85a4687
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import React from 'react';

interface CodeExporterProps {
  code: string;
}

const CodeExporter: React.FC<CodeExporterProps> = ({ code }) => {
  return (
    <div className="flex flex-col">
      <h2 className="text-lg font-medium">Code</h2>
      <pre className="bg-gray-100 p-2 rounded-sm">{code}</pre>
    </div>
  );
};

export default CodeExporter;