package com.reactlibrary;
import android.content.Context;
import android.util.AttributeSet;
import com.lidong.pdf.PDFView;

public class JPdfView extends PDFView{
    /**
     * Construct the initial view
     *
     * @param context
     * @param set
     */
    public JPdfView(Context context, AttributeSet set) {
        super(context, set);
    }

    public JPdfView(Context context) {
        this(context, null);
    }


}
