13 lines
176 B
React
13 lines
176 B
React
|
|
import React from 'react';
|
||
|
|
|
||
|
|
|
||
|
|
function Keywords(props) {
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className="container">
|
||
|
|
Keywords
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default Keywords;
|