File size: 99 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import React from 'react';
function H3(props) {
return <h3 {...props} />;
}
export default H3;
|
1e92f2d |
1 2 3 4 5 6 7 8 |
import React from 'react';
function H3(props) {
return <h3 {...props} />;
}
export default H3;
|