0
34
llucycodes42
This code imports React and exports a function that returns a <div> element with the text "first".
Library: react
Shortcut: rafc
import React from 'react';
export const ${1:filename} = () => {
return (
<div>first</div>
)
}